Skip to content

Commit 19fcdd5

Browse files
authored
STY: Break overly-long line
1 parent 034c276 commit 19fcdd5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

nibabel/cmdline/diff.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,8 @@ def get_data_diff(files, max_abs=0, max_rel=0):
167167
"""
168168

169169
# we are doomed to keep them in RAM now
170-
data = [f if isinstance(f, np.ndarray) else nib.load(f).get_fdata(dtype=np.float32) for f in files]
170+
data = [f if isinstance(f, np.ndarray) else nib.load(f).get_fdata(dtype=np.float32)
171+
for f in files]
171172
diffs = OrderedDict()
172173
for i, d1 in enumerate(data[:-1]):
173174
# populate empty entries for non-compared

0 commit comments

Comments
 (0)