Skip to content

Commit f44f5d7

Browse files
committed
BF: fixed line lengths
1 parent 7ed08c1 commit f44f5d7

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

surfer/tests/test_viz.py

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -75,14 +75,19 @@ def test_brains():
7575
mlab.options.backend = 'auto'
7676
surfs = ['inflated', 'white', 'white', 'white', 'white', 'white', 'white']
7777
hemis = ['lh', 'rh', 'both', 'both', 'rh', 'both', 'both']
78-
titles = [None, 'Hello', 'Good bye!', 'lut test', 'dict test', 'None test', 'RGB test']
78+
titles = [None, 'Hello', 'Good bye!', 'lut test',
79+
'dict test', 'None test', 'RGB test']
7980
cortices = ["low_contrast", ("Reds", 0, 1, False), 'hotpink',
80-
['yellow', 'blue'], dict(colormap='Greys'), None, (0.5, 0.5, 0.5)]
81+
['yellow', 'blue'], dict(colormap='Greys'),
82+
None, (0.5, 0.5, 0.5)]
8183
sizes = [500, (400, 300), (300, 300), (300, 400), 500, 400, 300]
82-
backgrounds = ["white", "blue", "black", "0.75", (0.2, 0.2, 0.2), "black", "0.75"]
83-
foregrounds = ["black", "white", "0.75", "red", (0.2, 0.2, 0.2), "blue", "black"]
84+
backgrounds = ["white", "blue", "black", "0.75",
85+
(0.2, 0.2, 0.2), "black", "0.75"]
86+
foregrounds = ["black", "white", "0.75", "red",
87+
(0.2, 0.2, 0.2), "blue", "black"]
8488
figs = [None, mlab.figure(), None, None, mlab.figure(), None, None]
85-
subj_dirs = [None, subj_dir, subj_dir, subj_dir, subj_dir, subj_dir, subj_dir]
89+
subj_dirs = [None, subj_dir, subj_dir, subj_dir,
90+
subj_dir, subj_dir, subj_dir]
8691
alphas = [1.0, 0.5, 0.25, 0.7, 0.5, 0.25, 0.7]
8792
for surf, hemi, title, cort, s, bg, fg, fig, sd, alpha \
8893
in zip(surfs, hemis, titles, cortices, sizes,

0 commit comments

Comments
 (0)