lib: Remove leftover breakpoints

Remove two breakpoints not belonging in the code of TarIo and Types.

Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
Jan Lindemann 2026-04-25 08:43:12 +02:00
commit 069899e48e
Signed by: Jan Lindemann
GPG key ID: 3750640C9E25DD61
2 changed files with 0 additions and 2 deletions

View file

@ -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)

View file

@ -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)