Skip to content
Snippets Groups Projects
Commit 1e337540 authored by Martin Larralde's avatar Martin Larralde
Browse files

Remove debug `print` from `pyhmmer.hmmer`

parent e94be4e3
No related branches found
No related tags found
No related merge requests found
Pipeline #56392 passed
......@@ -215,7 +215,6 @@ class _BaseWorker(typing.Generic[_Q, _T, _R], threading.Thread):
hits = self.process(chore.query)
chore.complete(hits)
except BaseException as exc:
print(exc)
self.kill()
chore.fail(exc)
if isinstance(self.targets, (SequenceFile, HMMPressedFile)):
......@@ -223,7 +222,6 @@ class _BaseWorker(typing.Generic[_Q, _T, _R], threading.Thread):
def kill(self) -> None:
"""Set the synchronized kill switch for all threads."""
print(self.kill_switch)
self.kill_switch.set()
def process(self, query: _Q) -> _R:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment