We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7eb728f + 4e8e06d commit 8e6df9dCopy full SHA for 8e6df9d
lib/matplotlib/axes/_axes.py
@@ -2162,15 +2162,15 @@ def make_iterable(x):
2162
2163
if adjust_xlim:
2164
xmin, xmax = self.dataLim.intervalx
2165
- xmin = np.min(w for w in width if w > 0)
+ xmin = min(w for w in width if w > 0)
2166
if xerr is not None:
2167
xmin = xmin - np.max(xerr)
2168
xmin = max(xmin * 0.9, 1e-100)
2169
self.dataLim.intervalx = (xmin, xmax)
2170
2171
if adjust_ylim:
2172
ymin, ymax = self.dataLim.intervaly
2173
- ymin = np.min(h for h in height if h > 0)
+ ymin = min(h for h in height if h > 0)
2174
if yerr is not None:
2175
ymin = ymin - np.max(yerr)
2176
ymin = max(ymin * 0.9, 1e-100)
0 commit comments