Skip to content

Commit 087d176

Browse files
STY: Apply ruff/Pyflakes rule F841
F841 Local variable is assigned to but never used I have left a few occurrences, to be examined later.
1 parent 0254dd1 commit 087d176

File tree

9 files changed

+10
-12
lines changed

9 files changed

+10
-12
lines changed

nipype/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
import faulthandler
2626

2727
faulthandler.enable()
28-
except (ImportError, OSError) as e:
28+
except (ImportError, OSError):
2929
pass
3030

3131
config = NipypeConfig()

nipype/interfaces/cmtk/tests/test_nbs.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
have_cv = True
99
try:
1010
package_check("cviewer")
11-
except Exception as e:
11+
except Exception:
1212
have_cv = False
1313

1414

@@ -39,7 +39,7 @@ def test_importerror(creating_graphs, tmpdir):
3939
nbs.inputs.in_group2 = group2
4040
nbs.inputs.edge_key = "weight"
4141

42-
with pytest.raises(ImportError) as e:
42+
with pytest.raises(ImportError):
4343
nbs.run()
4444

4545

nipype/interfaces/io.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,7 @@ def _fetch_bucket(self, bucket_name):
529529
try:
530530
import boto3
531531
import botocore
532-
except ImportError as exc:
532+
except ImportError:
533533
err_msg = "Boto3 package is not installed - install boto3 and try again."
534534
raise Exception(err_msg)
535535

@@ -571,7 +571,7 @@ def _fetch_bucket(self, bucket_name):
571571
# And try fetch the bucket with the name argument
572572
try:
573573
_get_head_bucket(s3_resource, bucket_name)
574-
except Exception as exc:
574+
except Exception:
575575
# Try to connect anonymously
576576
s3_resource.meta.client.meta.events.register(
577577
"choose-signer.s3.*", botocore.handlers.disable_signing
@@ -2621,7 +2621,6 @@ def _list_outputs(self):
26212621
)
26222622
if len(arg) > maxlen:
26232623
maxlen = len(arg)
2624-
outfiles = []
26252624
for i in range(maxlen):
26262625
argtuple = []
26272626
for arg in arglist:

nipype/interfaces/tests/test_io.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,7 @@ def test_freesurfersource():
565565

566566
def test_freesurfersource_incorrectdir():
567567
fss = nio.FreeSurferSource()
568-
with pytest.raises(TraitError) as err:
568+
with pytest.raises(TraitError):
569569
fss.inputs.subjects_dir = "path/to/no/existing/directory"
570570

571571

nipype/interfaces/utility/tests/test_csv.py

-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ def test_csvReader(tmpdir):
2929

3030

3131
def test_csvReader_quoted(tmpdir):
32-
header = "files,labels,erosion\n"
3332
lines = ['foo,"hello, world",300.1\n']
3433

3534
name = tmpdir.join("testfile.csv").strpath

nipype/pipeline/plugins/base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,7 @@ def _get_result(self, taskid):
541541
"Node working directory: ({}) ".format(taskid, timeout, node_dir)
542542
)
543543
raise OSError(error_message)
544-
except OSError as e:
544+
except OSError:
545545
result_data["traceback"] = "\n".join(format_exception(*sys.exc_info()))
546546
else:
547547
results_file = glob(os.path.join(node_dir, "result_*.pklz"))[0]

nipype/pipeline/plugins/tests/test_sgelike.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def test_crashfile_creation(tmp_path):
2727
pipe.config["execution"]["crashdump_dir"] = str(tmp_path)
2828
pipe.add_nodes([pe.Node(interface=Function(function=crasher), name="crasher")])
2929
sgelike_plugin = SGELikeBatchManagerBase("")
30-
with pytest.raises(RuntimeError) as e:
30+
with pytest.raises(RuntimeError):
3131
assert pipe.run(plugin=sgelike_plugin)
3232

3333
crashfiles = list(tmp_path.glob("crash*crasher*.pklz")) + list(

nipype/sphinxext/plot_workflow.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -672,7 +672,7 @@ def _dummy_print(*arg, **kwarg):
672672
exec(code, ns)
673673
if function_name is not None:
674674
exec(function_name + "()", ns)
675-
except (Exception, SystemExit) as err:
675+
except (Exception, SystemExit):
676676
raise GraphError(traceback.format_exc())
677677
finally:
678678
os.chdir(pwd)

nipype/utils/profiler.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
try:
1212
import psutil
13-
except ImportError as exc:
13+
except ImportError:
1414
psutil = None
1515

1616

0 commit comments

Comments
 (0)