Skip to content

Commit

Permalink
fferfre
Browse files Browse the repository at this point in the history
  • Loading branch information
jcfr committed Dec 4, 2023
1 parent 66f93a6 commit ba0ab45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion VirtualRadiographGeneration/VirtualRadiographGeneration.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def _strToFloatList(strList: str) -> list[float]:
"outputHeight",
]
expected_args = [f"<{arg}>" for arg in expected_args]
if len(sys.argv[1:]) != len(EXPECTED_ARGS):
if len(sys.argv[1:]) != len(expected_args):
print(f"Usage: {sys.argv[0]} {' '.join(expected_args)}")
sys.exit(1)

Expand Down

0 comments on commit ba0ab45

Please sign in to comment.