Skip to content

Commit c2911ea

Browse files
author
sveneschlbeck
committed
Removed the range parameter from the validate_whiskers function's error message since it is not included there
1 parent f0632c0 commit c2911ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/rcsetup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ def validate_whiskers(s):
414414
try:
415415
return float(s)
416416
except ValueError as e:
417-
raise ValueError("Not a valid whisker value ['range', float, "
417+
raise ValueError("Not a valid whisker value [float, "
418418
"(float, float)]") from e
419419

420420

0 commit comments

Comments
 (0)