Skip to content

Commit

Permalink
Fix default value for output_image_format
Browse files Browse the repository at this point in the history
It should be None or won't read from parameters file
  • Loading branch information
phcerdan committed Feb 16, 2024
1 parent 6ff49c5 commit f74d697
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mdai_utils/download_annotations.py
Original file line number Diff line number Diff line change
Expand Up @@ -1015,7 +1015,7 @@ def get_download_parser():
parser.add_argument(
"--output_image_format",
type=str,
default="nrrd",
default=None,
help="""Output image format for the volumes.""",
)

Expand Down

0 comments on commit f74d697

Please sign in to comment.