diff --git a/src/python/jw/pkg/lib/TarIo.py b/src/python/jw/pkg/lib/TarIo.py index 671bf8fd..00ba902e 100644 --- a/src/python/jw/pkg/lib/TarIo.py +++ b/src/python/jw/pkg/lib/TarIo.py @@ -39,7 +39,6 @@ class TarIo(CopyContext): blob = (await self.src.get(path)).stdout except Exception as e: log(ERR, f'Failed to read tar file "{path}" ({str(e)}') - breakpoint() raise return self._filter_tar_file(blob, path_filter, matched=matched) diff --git a/src/python/jw/pkg/lib/Types.py b/src/python/jw/pkg/lib/Types.py index 341a17c1..fe2418ef 100644 --- a/src/python/jw/pkg/lib/Types.py +++ b/src/python/jw/pkg/lib/Types.py @@ -82,7 +82,6 @@ class LoadTypes(Types): # export self._debug('o "{}.{}" is not of type {}'.format(mod_name, member_name, tp)) else: self._debug('o "{}.{}" doesn\'t match type filter'.format(mod_name, member_name)) - breakpoint() continue self._debug('o "{}.{}" is fine, adding'.format(mod_name, member_name)) ret.append(c)