8000 STY: Prefix unused loop control variable with an underscore · nipy/nibabel@01c9438 · GitHub
[go: up one dir, main page]

Skip to content

Commit 01c9438

Browse files
STY: Prefix unused loop control variable with an underscore
Co-authored-by: Chris Markiewicz <effigies@gmail.com>
1 parent 3e985b1 commit 01c9438

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nibabel/tests/test_filehandles.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def test_multiload():
3333
tmpdir = mkdtemp()
3434
fname = pjoin(tmpdir, 'test.img')
3535
save(img, fname)
36-
imgs.extend(load(fname) for i in range(N))
36+
imgs.extend(load(fname) for _ in range(N))
3737
finally:
3838
del img, imgs
3939
shutil.rmtree(tmpdir)

0 commit comments

Comments
 (0)
0