Skip to content

Commit

Permalink
address #52 revert to check_call
Browse files Browse the repository at this point in the history
  • Loading branch information
gbouras13 committed Nov 7, 2023
1 parent 0c1ca2d commit 28d1576
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dnaapler/utils/external_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def run(self) -> None:

@staticmethod
def _run_core(command: List[str], stdout_fh, stderr_fh) -> None:
subprocess.call(command, stdout=stdout_fh, stderr=stderr_fh)
subprocess.check_call(command, stdout=stdout_fh, stderr=stderr_fh)

@staticmethod
def run_tools(
Expand Down

0 comments on commit 28d1576

Please sign in to comment.