From fdff69ec2ae97a903c0ed0460286bf1f036f0137 Mon Sep 17 00:00:00 2001 From: Thomas A Caswell Date: Sat, 30 Jul 2022 18:48:04 -0400 Subject: [PATCH] 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 --- lib/matplotlib/tests/test_triangulation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/matplotlib/tests/test_triangulation.py b/lib/matplotlib/tests/test_triangulation.py index 08715525abcc..1b1cdc91f878 100644 --- a/lib/matplotlib/tests/test_triangulation.py +++ b/lib/matplotlib/tests/test_triangulation.py @@ -273,7 +273,7 @@ def test_tripcolor_clim(): ax = plt.figure().add_subplot() clim = (0.25, 0.75) norm = ax.tripcolor(a, b, c, clim=clim).norm - assert((norm.vmin, norm.vmax) == clim) + assert (norm.vmin, norm.vmax) == clim def test_tripcolor_warnings():