Skip to content

Commit e2bc243

Browse files
authored
Completely removed the variable name xval in favor of val
1 parent fda7f37 commit e2bc243

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

labellines/core.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -208,9 +208,9 @@ def labelLines(
208208
# The maximum match may miss a few points, let's add them back
209209
order[order < 0] = np.setdiff1d(np.arange(len(order)), order[order >= 0])
210210

211-
# Now reorder the xvalues
212-
old_xvals = vals.copy()
213-
vals[order] = old_xvals
211+
# Now reorder the values
212+
old_vals = vals.copy()
213+
vals[order] = old_vals
214214
else:
215215
vals = list(always_iterable(vals)) # force the creation of a copy
216216

@@ -230,7 +230,7 @@ def labelLines(
230230
warnings.warn(
231231
(
232232
"The value at position {} in `vals` is outside the range of its "
233-
"associated line (vmin={}, vmax={}, xval={}). Clipping it "
233+
"associated line (vmin={}, vmax={}, val={}). Clipping it "
234234
"into the allowed range."
235235
).format(i, min(data), max(data), val),
236236
UserWarning,

0 commit comments

Comments
 (0)