Skip to content

Commit

Permalink
Add suppress functionality back
Browse files Browse the repository at this point in the history
  • Loading branch information
stxue1 committed Dec 7, 2023
1 parent 440c841 commit f673997
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/toil/options/wdl.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ def add_wdl_options(parser: ArgumentParser, suppress: bool = True) -> None:
parser.add_argument(*output_file_arguments, dest="output_file", type=str, default=None,
help=suppress_help or "File or URI to save output JSON to.")
reference_inputs_arguments = ["--wdlReferenceInputs"] + (["--referenceInputs"] if not suppress else [])
parser.add_argument(reference_inputs_arguments, dest="reference_inputs", type="bool", default=False, # type: ignore
help="Pass input files by URL")
parser.add_argument(*reference_inputs_arguments, dest="reference_inputs", type="bool", default=False, # type: ignore
help=suppress_help or "Pass input files by URL")

0 comments on commit f673997

Please sign in to comment.