Skip to content

Commit

Permalink
trivial pep8 change
Browse files Browse the repository at this point in the history
  • Loading branch information
ianthomas23 committed May 29, 2019
1 parent 55a0edb commit c2d6399
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/matplotlib/tri/tricontour.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ def _contour_args(self, args, kwargs):
raise ValueError('z must not contain masked points within the '
'triangulation')
if not np.isfinite(z_check).all():
raise ValueError('z array must not contain non-finite values within'
' the triangulation')
raise ValueError('z array must not contain non-finite values '
'within the triangulation')

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

0 comments on commit c2d6399

Please sign in to comment.