Skip to content

Commit 32a711e

Browse files
authored
Merge pull request #3671 from DimitriPapadopoulos/B
STY: Apply ruff/flake8-bugbear rules (B)
2 parents 25469f1 + fdab8ef commit 32a711e

File tree

16 files changed

+40
-48
lines changed

16 files changed

+40
-48
lines changed

nipype/algorithms/tests/test_modelgen.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def test_modelgen_spm_concat(tmpdir):
122122
s = SpecifySPMModel()
123123
s.inputs.input_units = "secs"
124124
s.inputs.concatenate_runs = True
125-
setattr(s.inputs, "output_units", "secs")
125+
s.inputs.output_units = "secs"
126126
assert s.inputs.output_units == "secs"
127127
s.inputs.functional_runs = [filename1, filename2]
128128
s.inputs.time_repetition = 6
@@ -147,7 +147,7 @@ def test_modelgen_spm_concat(tmpdir):
147147
)
148148

149149
# Test case of scans as output units instead of seconds
150-
setattr(s.inputs, "output_units", "scans")
150+
s.inputs.output_units = "scans"
151151
assert s.inputs.output_units == "scans"
152152
s.inputs.subject_info = deepcopy(info)
153153
res = s.run()

nipype/interfaces/afni/utils.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -3244,11 +3244,11 @@ def _run_interface(self, runtime):
32443244
for line in runtime.stdout.split("\n")
32453245
if line.strip().startswith("GCOR = ")
32463246
][-1]
3247-
setattr(self, "_gcor", float(gcor_line[len("GCOR = ") :]))
3247+
self._gcor = float(gcor_line[len("GCOR = ") :])
32483248
return runtime
32493249

32503250
def _list_outputs(self):
3251-
return {"out": getattr(self, "_gcor")}
3251+
return {"out": self._gcor}
32523252

32533253

32543254
class AxializeInputSpec(AFNICommandInputSpec):

nipype/interfaces/ants/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,7 @@ def _format_arg(self, opt, spec, val):
536536
return super()._format_arg(opt, spec, val)
537537

538538
def _list_outputs(self):
539-
return getattr(self, "_output")
539+
return self._output
540540

541541

542542
class AverageAffineTransformInputSpec(ANTSCommandInputSpec):

nipype/interfaces/base/support.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def __exit__(self, exc_type, exc_value, exc_tb):
9999
traceback.format_exception(exc_type, exc_value, exc_tb)
100100
)
101101
# Gather up the exception arguments and append nipype info.
102-
exc_args = exc_value.args if getattr(exc_value, "args") else tuple()
102+
exc_args = exc_value.args or ()
103103
exc_args += (
104104
f"An exception of type {exc_type.__name__} occurred while "
105105
f"running interface {self._runtime.interface}.",

nipype/interfaces/elastix/utils.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -164,18 +164,18 @@ def _run_interface(self, runtime):
164164

165165
def _list_outputs(self):
166166
outputs = self.output_spec().get()
167-
outputs["output_file"] = getattr(self, "_out_file")
167+
outputs["output_file"] = self._out_file
168168
return outputs
169169

170170
def _get_outfile(self):
171-
val = getattr(self, "_out_file")
171+
val = self._out_file
172172
if val is not None and val != "":
173173
return val
174174

175175
if isdefined(self.inputs.output_file):
176-
setattr(self, "_out_file", self.inputs.output_file)
176+
self._out_file = self.inputs.output_file
177177
return self.inputs.output_file
178178

179179
out_file = op.abspath(op.basename(self.inputs.transform_file))
180-
setattr(self, "_out_file", out_file)
180+
self._out_file = out_file
181181
return out_file

nipype/interfaces/fsl/utils.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -929,7 +929,7 @@ def _run_interface(self, runtime):
929929
float(r) for r in out["translations"].strip().split(" ")
930930
]
931931

932-
setattr(self, "_results", outputs)
932+
self._results = outputs
933933
return runtime
934934

935935
def _list_outputs(self):
@@ -2513,8 +2513,8 @@ def _format_arg(self, name, trait_spec, value):
25132513

25142514
def _parse_inputs(self, skip=None):
25152515
fname, ext = op.splitext(self.inputs.in_coords)
2516-
setattr(self, "_in_file", fname)
2517-
setattr(self, "_outformat", ext[1:])
2516+
self._in_file = fname
2517+
self._outformat = ext[1:]
25182518
first_args = super()._parse_inputs(skip=["in_coords", "out_file"])
25192519

25202520
second_args = fname + ".txt"
@@ -2580,11 +2580,11 @@ def _coords_to_trk(self, points, out_file):
25802580

25812581
def _overload_extension(self, value, name):
25822582
if name == "out_file":
2583-
return "{}.{}".format(value, getattr(self, "_outformat"))
2583+
return "{}.{}".format(value, self._outformat)
25842584

25852585
def _run_interface(self, runtime):
2586-
fname = getattr(self, "_in_file")
2587-
outformat = getattr(self, "_outformat")
2586+
fname = self._in_file
2587+
outformat = self._outformat
25882588
tmpfile = None
25892589

25902590
if outformat == "vtk":

nipype/interfaces/spm/model.py

+9-17
Original file line numberDiff line numberDiff line change
@@ -849,30 +849,22 @@ def _make_matlab_command(self, _):
849849

850850
def aggregate_outputs(self, runtime=None):
851851
outputs = self._outputs()
852-
setattr(outputs, "thresholded_map", self._gen_thresholded_map_filename())
853-
setattr(outputs, "pre_topo_fdr_map", self._gen_pre_topo_map_filename())
852+
outputs.thresholded_map = self._gen_thresholded_map_filename()
853+
outputs.pre_topo_fdr_map = self._gen_pre_topo_map_filename()
854854
for line in runtime.stdout.split("\n"):
855855
if line.startswith("activation_forced = "):
856-
setattr(
857-
outputs,
858-
"activation_forced",
859-
line[len("activation_forced = ") :].strip() == "1",
856+
outputs.activation_forced = (
857+
line[len("activation_forced = ") :].strip() == "1"
860858
)
861859
elif line.startswith("n_clusters = "):
862-
setattr(
863-
outputs, "n_clusters", int(line[len("n_clusters = ") :].strip())
864-
)
860+
outputs.n_clusters = int(line[len("n_clusters = ") :].strip())
865861
elif line.startswith("pre_topo_n_clusters = "):
866-
setattr(
867-
outputs,
868-
"pre_topo_n_clusters",
869-
int(line[len("pre_topo_n_clusters = ") :].strip()),
862+
outputs.pre_topo_n_clusters = int(
863+
line[len("pre_topo_n_clusters = ") :].strip()
870864
)
871865
elif line.startswith("cluster_forming_thr = "):
872-
setattr(
873-
outputs,
874-
"cluster_forming_thr",
875-
float(line[len("cluster_forming_thr = ") :].strip()),
866+
outputs.cluster_forming_thr = float(
867+
line[len("cluster_forming_thr = ") :].strip()
876868
)
877869
return outputs
878870

nipype/interfaces/tests/test_io.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ def test_datasink_copydir_2(_temp_analyze_files, tmpdir):
517517
base_directory=tmpdir.mkdir("basedir").strpath, parameterization=False
518518
)
519519
ds.inputs.remove_dest_dir = True
520-
setattr(ds.inputs, "outdir", pth)
520+
ds.inputs.outdir = pth
521521
ds.run()
522522
sep = os.path.sep
523523
assert not tmpdir.join("basedir", pth.split(sep)[-1], fname).check()

nipype/interfaces/utility/wrappers.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def __init__(
7272

7373
super().__init__(**inputs)
7474
if function:
75-
if hasattr(function, "__call__"):
75+
if callable(function):
7676
try:
7777
self.inputs.function_str = getsource(function)
7878
except OSError:
@@ -101,7 +101,7 @@ def __init__(
101101

102102
def _set_function_string(self, obj, name, old, new):
103103
if name == "function_str":
104-
if hasattr(new, "__call__"):
104+
if callable(new):
105105
function_source = getsource(new)
106106
fninfo = new.__code__
107107
elif isinstance(new, (str, bytes)):

nipype/pipeline/engine/tests/test_engine.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
def test_1mod(iterables, expected):
2626
pipe = pe.Workflow(name="pipe")
2727
mod1 = pe.Node(interface=EngineTestInterface(), name="mod1")
28-
setattr(mod1, "iterables", iterables["1"])
28+
mod1.iterables = iterables["1"]
2929
pipe.add_nodes([mod1])
3030
pipe._flatgraph = pipe._create_flat_graph()
3131
pipe._execgraph = pe.generate_expanded_graph(deepcopy(pipe._flatgraph))
@@ -49,7 +49,7 @@ def test_2mods(iterables, expected):
4949
mod1 = pe.Node(interface=EngineTestInterface(), name="mod1")
5050
mod2 = pe.Node(interface=EngineTestInterface(), name="mod2")
5151
for nr in ["1", "2"]:
52-
setattr(eval("mod" + nr), "iterables", iterables[nr])
52+
eval("mod" + nr).iterables = iterables[nr]
5353
pipe.connect([(mod1, mod2, [("output1", "input2")])])
5454
pipe._flatgraph = pipe._create_flat_graph()
5555
pipe._execgraph = pe.generate_expanded_graph(deepcopy(pipe._flatgraph))
@@ -87,7 +87,7 @@ def test_3mods(iterables, expected, connect):
8787
mod2 = pe.Node(interface=EngineTestInterface(), name="mod2")
8888
mod3 = pe.Node(interface=EngineTestInterface(), name="mod3")
8989
for nr in ["1", "2", "3"]:
90-
setattr(eval("mod" + nr), "iterables", iterables[nr])
90+
eval("mod" + nr).iterables = iterables[nr]
9191
if connect == ("1-2", "2-3"):
9292
pipe.connect(
9393
[

nipype/pipeline/engine/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -852,7 +852,7 @@ def _identity_nodes(graph, include_iterables):
852852
node
853853
for node in nx.topological_sort(graph)
854854
if isinstance(node.interface, IdentityInterface)
855-
and (include_iterables or getattr(node, "iterables") is None)
855+
and (include_iterables or node.iterables is None)
856856
]
857857

858858

nipype/pipeline/plugins/debug.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def __init__(self, plugin_args=None):
1515
if (
1616
plugin_args
1717
and "callable" in plugin_args
18-
and hasattr(plugin_args["callable"], "__call__")
18+
and callable(plugin_args["callable"])
1919
):
2020
self._callable = plugin_args["callable"]
2121
else:

nipype/utils/config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ def _mock():
353353

354354
# Older versions of xvfbwrapper used vdisplay_num
355355
if not hasattr(self._display, "new_display"):
356-
setattr(self._display, "new_display", self._display.vdisplay_num)
356+
self._display.new_display = self._display.vdisplay_num
357357
return self.get_display()
358358

359359
def stop_display(self):

nipype/utils/profiler.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -174,9 +174,9 @@ def log_nodes_cb(node, status):
174174
status_dict = {
175175
"name": node.name,
176176
"id": node._id,
177-
"start": getattr(node.result.runtime, "startTime"),
178-
"finish": getattr(node.result.runtime, "endTime"),
179-
"duration": getattr(node.result.runtime, "duration"),
177+
"start": node.result.runtime.startTime,
178+
"finish": node.result.runtime.endTime,
179+
"duration": node.result.runtime.duration,
180180
"runtime_threads": getattr(node.result.runtime, "cpu_percent", "N/A"),
181181
"runtime_memory_gb": getattr(node.result.runtime, "mem_peak_gb", "N/A"),
182182
"estimated_memory_gb": node.mem_gb,

nipype/utils/provenance.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ def write_provenance(results, filename="provenance", format="all"):
300300
import traceback
301301

302302
err_msg = traceback.format_exc()
303-
if getattr(e, "args"):
303+
if e.args:
304304
err_msg += "\n\nException arguments:\n" + ", ".join(
305305
['"%s"' % arg for arg in e.args]
306306
)

tools/checkspecs.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ def test_specs(self, uri):
287287
continue
288288
parent_metadata = []
289289
if "parent" in trait.__dict__:
290-
parent_metadata = list(getattr(trait, "parent").__dict__.keys())
290+
parent_metadata = list(trait.parent.__dict__)
291291
if (
292292
key
293293
not in allowed_keys
@@ -375,7 +375,7 @@ def test_specs(self, uri):
375375
continue
376376
parent_metadata = []
377377
if "parent" in trait.__dict__:
378-
parent_metadata = list(getattr(trait, "parent").__dict__.keys())
378+
parent_metadata = list(trait.parent.__dict__)
379379
if (
380380
key
381381
not in allowed_keys

0 commit comments

Comments
 (0)