Skip to content

Commit

Permalink
pylint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ACEnglish committed Apr 3, 2024
1 parent 7b1663e commit d862e76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion truvari/phab.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ def run_mafft(seq_bytes, params=DEFAULT_MAFFT_PARAM):
ret = truvari.cmd_exe(f"mafft {params} -", stdin=seq_bytes)
if ret.ret_code != 0:
logging.error("Unable to run MAFFT")
logging.error("stderr:", ret.stderr)
logging.error("stderr: %s", ret.stderr)
return ""

if dev_name is not None:
Expand Down

0 comments on commit d862e76

Please sign in to comment.