Skip to content

Commit cb889bf

Browse files
STY: Apply ruff/Pyflakes rule F901
F901 `raise NotImplemented` should be `raise NotImplementedError`
1 parent 715d7cd commit cb889bf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

nipype/interfaces/minc/minc.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -3403,7 +3403,7 @@ def _gen_filename(self, name):
34033403
+ ".xfm"
34043404
)
34053405
else:
3406-
raise NotImplemented
3406+
raise NotImplementedError
34073407

34083408
def _list_outputs(self):
34093409
outputs = self.output_spec().get()
@@ -3502,7 +3502,7 @@ def _gen_filename(self, name):
35023502
+ ".xfm"
35033503
)
35043504
else:
3505-
raise NotImplemented
3505+
raise NotImplementedError
35063506

35073507
def _gen_outfilename(self):
35083508
return self._gen_filename("output_file")
@@ -3573,7 +3573,7 @@ def _gen_filename(self, name):
35733573
+ ".xfm"
35743574
)
35753575
else:
3576-
raise NotImplemented
3576+
raise NotImplementedError
35773577

35783578
def _gen_outfilename(self):
35793579
return self._gen_filename("output_file")

0 commit comments

Comments
 (0)