Skip to content

Commit 4657c8b

Browse files
committed
PEP8 fix in test_cycles.py
1 parent da2457d commit 4657c8b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/matplotlib/tests/test_cycles.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,8 @@ def test_fillcycle_ignore():
123123
ax.legend(loc='upper left')
124124

125125

126-
@image_comparison(baseline_images=['property_collision_plot'], remove_text=True,
127-
extensions=['png'])
126+
@image_comparison(baseline_images=['property_collision_plot'],
127+
remove_text=True, extensions=['png'])
128128
def test_property_collision_plot():
129129
fig, ax = plt.subplots()
130130
ax.set_prop_cycle('linewidth', [2, 4])
@@ -134,8 +134,8 @@ def test_property_collision_plot():
134134
ax.plot(np.arange(10), 5 * np.arange(10))
135135

136136

137-
@image_comparison(baseline_images=['property_collision_fill'], remove_text=True,
138-
extensions=['png'])
137+
@image_comparison(baseline_images=['property_collision_fill'],
138+
remove_text=True, extensions=['png'])
139139
def test_property_collision_fill():
140140
fig, ax = plt.subplots()
141141
xs = np.arange(10)

0 commit comments

Comments
 (0)