Skip to content

Commit b64a6b4

Browse files
Simpler code path
1 parent 9491ed3 commit b64a6b4

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

labellines/core.py

+5-6
Original file line numberDiff line numberDiff line change
@@ -185,14 +185,13 @@ def labelLines(
185185
xvals = (xvals[0] + shrinkage, xvals[1] - shrinkage)
186186

187187
if isinstance(xvals, tuple) and len(xvals) == 2:
188-
xmin, xmax = xvals
189-
xscale = ax.get_xscale()
190-
191188
# Convert datetime objects to numeric values for linspace/geomspace
192-
x_is_datetime = isinstance(xmin, datetime) or isinstance(xmax, datetime)
189+
x_is_datetime = isinstance(xvals[0], datetime)
193190
if x_is_datetime:
194-
xmin = plt.matplotlib.dates.date2num(xmin)
195-
xmax = plt.matplotlib.dates.date2num(xmax)
191+
xvals = plt.matplotlib.dates.date2num(xvals)
192+
193+
xmin, xmax = xvals
194+
xscale = ax.get_xscale()
196195

197196
if xscale == "log":
198197
xvals = np.geomspace(xmin, xmax, len(all_lines) + 2)[1:-1]

0 commit comments

Comments
 (0)