Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 59328e6

Browse files
committed
Fix typo (a forgotten 'return' statement...)
1 parent 7ab75f5 commit 59328e6

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
@@ -539,7 +539,7 @@ def validate_ps_distiller(s):
539539
addendum=(" See 'validate_negative_linestyle_legacy' " +
540540
"deprecation warning for more information."))
541541
def validate_negative_linestyle(s):
542-
_validate_negative_linestyle(s)
542+
return _validate_negative_linestyle(s)
543543

544544

545545
@deprecated('3.0.0?', pending=True,

0 commit comments

Comments
 (0)