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

Skip to content

Commit c2d6399

Browse files
committed
trivial pep8 change
1 parent 55a0edb commit c2d6399

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/matplotlib/tri/tricontour.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ def _contour_args(self, args, kwargs):
9191
raise ValueError('z must not contain masked points within the '
9292
'triangulation')
9393
if not np.isfinite(z_check).all():
94-
raise ValueError('z array must not contain non-finite values within'
95-
' the triangulation')
94+
raise ValueError('z array must not contain non-finite values '
95+
'within the triangulation')
9696

9797
z = np.ma.masked_invalid(z, copy=False)
9898
self.zmax = float(z_check.max())

0 commit comments

Comments
 (0)