Skip to content

Commit 70f42d4

Browse files
STY: Apply ruff/Pyflakes rule F901
F901 `raise NotImplemented` should be `raise NotImplementedError`
1 parent 087d176 commit 70f42d4

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
@@ -3402,7 +3402,7 @@ def _gen_filename(self, name):
34023402
+ ".xfm"
34033403
)
34043404
else:
3405-
raise NotImplemented
3405+
raise NotImplementedError
34063406

34073407
def _list_outputs(self):
34083408
outputs = self.output_spec().get()
@@ -3501,7 +3501,7 @@ def _gen_filename(self, name):
35013501
+ ".xfm"
35023502
)
35033503
else:
3504-
raise NotImplemented
3504+
raise NotImplementedError
35053505

35063506
def _gen_outfilename(self):
35073507
return self._gen_filename("output_file")
@@ -3572,7 +3572,7 @@ def _gen_filename(self, name):
35723572
+ ".xfm"
35733573
)
35743574
else:
3575-
raise NotImplemented
3575+
raise NotImplementedError
35763576

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

0 commit comments

Comments
 (0)