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

Skip to content

Commit cf3211f

Browse files
committed
Replace tabs in indentation with spaces.
svn path=/trunk/matplotlib/; revision=6493
1 parent 64c6b1d commit cf3211f

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

lib/matplotlib/axes.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5579,14 +5579,14 @@ def fill_between(self, x, y1, y2=0, where=None, **kwargs):
55795579
55805580
"""
55815581
x = np.asarray(x)
5582-
if not cbook.iterable(y1):
5583-
y1 = np.ones_like(x)*y1
5582+
if not cbook.iterable(y1):
5583+
y1 = np.ones_like(x)*y1
55845584

5585-
if not cbook.iterable(y2):
5586-
y2 = np.ones_like(x)*y2
5585+
if not cbook.iterable(y2):
5586+
y2 = np.ones_like(x)*y2
55875587

5588-
if where is None:
5589-
where = np.ones(len(x), np.bool)
5588+
if where is None:
5589+
where = np.ones(len(x), np.bool)
55905590

55915591
y1 = np.asarray(y1)
55925592
y2 = np.asarray(y2)

0 commit comments

Comments
 (0)