Skip to content

Commit

Permalink
correct linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
wasserth committed Feb 6, 2024
1 parent fbe088e commit 373b252
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion totalsegmentator/python_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def totalsegmentator(input: Union[str, Path, Nifti1Image], output: Union[str, Pa
arguments in bin/TotalSegmentator.
"""
if not isinstance(input, Nifti1Image):
input = Path(input)
input = Path(input)
output = Path(output)

nora_tag = "None" if nora_tag is None else nora_tag
Expand Down

0 comments on commit 373b252

Please sign in to comment.