Skip to content

Commit fdff69e

Browse files
committed
STY: fix whitespace on an assert
This was caught by new version of linter. Either flake8 4.0.1 -> 5.0.0 or pycodestyle 2.8.0 -> 2.9.0
1 parent cd66bfd commit fdff69e

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)