Skip to content

Commit

Permalink
updated documentation around CLI args
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandip117 committed Jan 9, 2025
1 parent cb8d18b commit 5ae43d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pacs_retrieve.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
'--inputJSONfile',
default='',
type=str,
help='JSON file containing DICOM data to be retrieved'
help='name of the JSON file containing DICOM data to be retrieved'
)
parser.add_argument(
'--copyInputFile',
Expand Down Expand Up @@ -91,7 +91,7 @@ def main(options: Namespace, inputdir: Path, outputdir: Path):
:param outputdir: directory where to write output files
"""

print(DISPLAY_TITLE)
LOG(DISPLAY_TITLE)

mapper = PathMapper.file_mapper(inputdir, outputdir, glob=options.inputJSONfile)
for input_file, output_file in mapper:
Expand Down

0 comments on commit 5ae43d1

Please sign in to comment.