Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 931a81f

Browse files
authored
Merge pull request #23527 from tacaswell/sty_update_linters
STY: fix whitespace on an assert
2 parents fa58d55 + fdff69e commit 931a81f

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)