Skip to content

Commit efc8f92

Browse files
STY: Apply ruff/Pyflakes rule F821
F821 Undefined name I have left some occurrences, to be fixed in a later pull request.
1 parent 8d19412 commit efc8f92

File tree

6 files changed

+17
-14
lines changed

6 files changed

+17
-14
lines changed

nipype/interfaces/ants/resampling.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def _format_arg(self, opt, spec, val):
122122
if isdefined(self.inputs.invert_affine):
123123
diff_inv = set(self.inputs.invert_affine) - set(affine_invert)
124124
if diff_inv:
125-
raise Exceptions(
125+
raise Exception(
126126
"Review invert_affine, not all indexes from invert_affine were used, "
127127
"check the description for the full definition"
128128
)
@@ -275,7 +275,7 @@ def _format_arg(self, opt, spec, val):
275275
if isdefined(self.inputs.invert_affine):
276276
diff_inv = set(self.inputs.invert_affine) - set(affine_invert)
277277
if diff_inv:
278-
raise Exceptions(
278+
raise Exception(
279279
"Review invert_affine, not all indexes from invert_affine were used, "
280280
"check the description for the full definition"
281281
)

nipype/interfaces/cmtk/parcellation.py

+8-7
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@
2323

2424

2525
def create_annot_label(subject_id, subjects_dir, fs_dir, parcellation_name):
26-
import cmp
26+
from cmp.configuration import PipelineConfiguration
2727
from cmp.util import runCmd
2828

2929
iflogger.info("Create the cortical labels necessary for our ROIs")
3030
iflogger.info("=================================================")
3131
fs_label_dir = op.join(op.join(subjects_dir, subject_id), "label")
3232
output_dir = op.abspath(op.curdir)
3333
paths = []
34-
cmp_config = cmp.configuration.PipelineConfiguration()
34+
cmp_config = PipelineConfiguration()
3535
cmp_config.parcellation_scheme = "Lausanne2008"
3636
for hemi in ["lh", "rh"]:
3737
spath = (
@@ -332,13 +332,13 @@ def create_annot_label(subject_id, subjects_dir, fs_dir, parcellation_name):
332332
def create_roi(subject_id, subjects_dir, fs_dir, parcellation_name, dilation):
333333
"""Creates the ROI_%s.nii.gz files using the given parcellation information
334334
from networks. Iteratively create volume."""
335-
import cmp
335+
from cmp.configuration import PipelineConfiguration
336336
from cmp.util import runCmd
337337

338338
iflogger.info("Create the ROIs:")
339339
output_dir = op.abspath(op.curdir)
340340
fs_dir = op.join(subjects_dir, subject_id)
341-
cmp_config = cmp.configuration.PipelineConfiguration()
341+
cmp_config = PipelineConfiguration()
342342
cmp_config.parcellation_scheme = "Lausanne2008"
343343
log = cmp_config.get_logger()
344344
parval = cmp_config._get_lausanne_parcellation("Lausanne2008")[parcellation_name]
@@ -467,12 +467,12 @@ def create_roi(subject_id, subjects_dir, fs_dir, parcellation_name, dilation):
467467

468468

469469
def create_wm_mask(subject_id, subjects_dir, fs_dir, parcellation_name):
470-
import cmp
470+
from cmp.configuration import PipelineConfiguration
471471
import scipy.ndimage.morphology as nd
472472

473473
iflogger.info("Create white matter mask")
474474
fs_dir = op.join(subjects_dir, subject_id)
475-
cmp_config = cmp.configuration.PipelineConfiguration()
475+
cmp_config = PipelineConfiguration()
476476
cmp_config.parcellation_scheme = "Lausanne2008"
477477
pgpath = cmp_config._get_lausanne_parcellation("Lausanne2008")[parcellation_name][
478478
"node_information_graphml"
@@ -618,10 +618,11 @@ def create_wm_mask(subject_id, subjects_dir, fs_dir, parcellation_name):
618618
def crop_and_move_datasets(
619619
subject_id, subjects_dir, fs_dir, parcellation_name, out_roi_file, dilation
620620
):
621+
from cmp.configuration import PipelineConfiguration
621622
from cmp.util import runCmd
622623

623624
fs_dir = op.join(subjects_dir, subject_id)
624-
cmp_config = cmp.configuration.PipelineConfiguration()
625+
cmp_config = PipelineConfiguration()
625626
cmp_config.parcellation_scheme = "Lausanne2008"
626627
log = cmp_config.get_logger()
627628
output_dir = op.abspath(op.curdir)

nipype/interfaces/mrtrix3/connectivity.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ def _parse_inputs(self, skip=None):
212212

213213
path = which(self._cmd)
214214
if path is None:
215-
path = os.getenv(MRTRIX3_HOME, "/opt/mrtrix3")
215+
path = os.getenv("MRTRIX3_HOME", "/opt/mrtrix3")
216216
else:
217217
path = op.dirname(op.dirname(path))
218218

@@ -304,7 +304,7 @@ def _parse_inputs(self, skip=None):
304304

305305
path = which(self._cmd)
306306
if path is None:
307-
path = os.getenv(MRTRIX3_HOME, "/opt/mrtrix3")
307+
path = os.getenv("MRTRIX3_HOME", "/opt/mrtrix3")
308308
else:
309309
path = op.dirname(op.dirname(path))
310310

nipype/interfaces/vtkbase.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def vtk_old():
6363
"""Checks if VTK uses the old-style pipeline (VTK<6.0)"""
6464
global _vtk_version
6565
if _vtk_version is None:
66-
raise RuntimeException("VTK is not correctly installed.")
66+
raise RuntimeError("VTK is not correctly installed.")
6767
return _vtk_version[0] < 6
6868

6969

nipype/pipeline/plugins/tests/test_oar.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import os
12
from shutil import which
23

34
import nipype.interfaces.base as nib

nipype/utils/filemanip.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def split_filename(fname):
4747
fname : str
4848
filename from fname, without extension
4949
ext : str
50-
file extension from fname
50+
file extension from fname706
5151
5252
Examples
5353
--------
@@ -700,10 +700,11 @@ def savepkl(filename, record, versioning=False):
700700
os.rename(tmpfile, filename)
701701
break
702702
except FileNotFoundError as e:
703+
last_e = e
703704
fmlogger.debug(str(e))
704705
sleep(2)
705706
else:
706-
raise e
707+
raise last_e
707708

708709

709710
rst_levels = ["=", "-", "~", "+"]

0 commit comments

Comments
 (0)