Skip to content

Commit 71ff2fb

Browse files
committed
Fix merge
1 parent ddb4b45 commit 71ff2fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/axes/_axes.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5399,7 +5399,7 @@ def hist(self, x, bins=10, range=None, normed=False, weights=None,
53995399
closed=True,
54005400
facecolor=c))
54015401
else:
5402-
for x, y, c in reversed(zip(xvals, yvals, color)):
5402+
for x, y, c in reversed(list(zip(xvals, yvals, color))):
54035403
split = 2 * len(bins)
54045404
patches.append(self.fill(
54055405
x[:split], y[:split],

0 commit comments

Comments
 (0)