Skip to content

Commit

Permalink
fixing reference warning
Browse files Browse the repository at this point in the history
  • Loading branch information
ACEnglish committed Sep 4, 2024
1 parent bce0b5b commit ee167cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion truvari/bench.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def check_params(args):
logging.warning("`--reference` is no longer recommended and will be deprecated by v5")
if not os.path.exists(args.reference):
logging.error("Reference %s does not exist", args.reference)
check_fail = True
check_fail = True
return check_fail


Expand Down
2 changes: 1 addition & 1 deletion truvari/collapse.py
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@ def check_params(args):
logging.warning("`--reference` is no longer recommended and will be deprecated by v5")
if not os.path.exists(args.reference):
logging.error("Reference %s does not exist", args.reference)
check_fail = True
check_fail = True
return check_fail


Expand Down

0 comments on commit ee167cc

Please sign in to comment.