8000 STY: fix unrelated style check · matplotlib/matplotlib@910d5f9 · GitHub
[go: up one dir, main page]

Skip to content

Commit 910d5f9

Browse files
committed
STY: fix unrelated style check
Caught by new version of flake8.
1 parent 52f6f24 commit 910d5f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/tests/test_triangulation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ def test_tripcolor_clim():
273273
ax = plt.figure().add_subplot()
274274
clim = (0.25, 0.75)
275275
norm = ax.tripcolor(a, b, c, clim=clim).norm
276-
assert((norm.vmin, norm.vmax) == clim)
276+
assert (norm.vmin, norm.vmax) == clim
277277

278278

279279
def test_tripcolor_warnings():

0 commit comments

Comments
 (0)
0