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

Skip to content

Commit bd44468

Browse files
committed
Remove trailing whitespace.
svn path=/trunk/matplotlib/; revision=6521
1 parent 3e70c4c commit bd44468

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/matplotlib/axes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6521,7 +6521,7 @@ def hist(self, x, bins=10, range=None, normed=False, cumulative=False,
65216521
if not self._hold: self.cla()
65226522

65236523
# NOTE: the range keyword overwrites the built-in func range !!!
6524-
# needs to be fixed in with numpy !!!
6524+
# needs to be fixed in with numpy !!!
65256525

65266526
if kwargs.get('width') is not None:
65276527
raise DeprecationWarning(
@@ -6551,7 +6551,7 @@ def hist(self, x, bins=10, range=None, normed=False, cumulative=False,
65516551
binsgiven = (cbook.iterable(bins) or range != None)
65526552

65536553
# check the version of the numpy
6554-
if np.__version__ < "1.2": # version 1.1
6554+
if np.__version__ < "1.2": # version 1.1
65556555
hist_kwargs = dict(range=range,
65566556
normed=bool(normed), new=True)
65576557
else: # version 1.2 and later, drop new=True

0 commit comments

Comments
 (0)