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

Skip to content

Commit 3e4f696

Browse files
committed
removed a whitespace, pep8 fix
1 parent e866b74 commit 3e4f696

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/matplotlib/axes/_base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3377,12 +3377,12 @@ def _set_view_from_bbox(self, bbox, direction='in',
33773377
xzc = (xp*(scl - 1) + xcen)/scl
33783378
yzc = (yp*(scl - 1) + ycen)/scl
33793379

3380-
bbox = [xzc - xwidth/2./scl, yzc - ywidth/2./scl,
3380+
bbox = [xzc - xwidth/2./scl, yzc - ywidth/2./scl,
33813381
xzc + xwidth/2./scl, yzc + ywidth/2./scl]
33823382
elif len(bbox) != 4:
33833383
# should be len 3 or 4 but nothing else
33843384
warnings.warn('Warning in _set_view_from_bbox: bounding box is not a\
3385-
tuple of length 3 or\ 4. Ignoring the view change...')
3385+
tuple of length 3 or 4. Ignoring the view change...')
33863386
return
33873387

33883388
# Just grab bounding box

0 commit comments

Comments
 (0)