Skip to content

Commit

Permalink
Indentation fix
Browse files Browse the repository at this point in the history
Signed-off-by: Ben Murray <[email protected]>
  • Loading branch information
atbenmurray committed Aug 25, 2023
1 parent 6fe8c68 commit c7a6cca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion monai/transforms/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1801,7 +1801,7 @@ def wrapper(inst, data, *args, **kwargs):
h_kwargs[k] = param_default(f_args, k)

Check warning on line 1801 in monai/transforms/utils.py

View check run for this annotation

Codecov / codecov/patch

monai/transforms/utils.py#L1799-L1801

Added lines #L1799 - L1801 were not covered by tests

if _mode == "pre":
return func(inst, hook(inst, data, **h_kwargs), *args, **kwargs)
return func(inst, hook(inst, data, **h_kwargs), *args, **kwargs)
return hook(inst, func(inst, data, *args, **kwargs), **h_kwargs)

Check warning on line 1805 in monai/transforms/utils.py

View check run for this annotation

Codecov / codecov/patch

monai/transforms/utils.py#L1803-L1805

Added lines #L1803 - L1805 were not covered by tests

return wrapper
Expand Down

0 comments on commit c7a6cca

Please sign in to comment.