Skip to content

Commit a2330b2

Browse files
author
Marc Garcia
committed
Revert "Temporary not warning for Series.plot positional arguments (looks like this caused the parallel coordinates test failure)"
This reverts commit 4d70d5d.
1 parent 4d70d5d commit a2330b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/plotting/_core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -546,7 +546,7 @@ def _get_call_args(backend_name, data, args, kwargs):
546546
'Series or DataFrame').format(
547547
type(data).__name__))
548548

549-
if args and isinstance(data, ABCSeries) and False: # FIXME not generating the warning to see if parallel coordinates test is fixed in the CI
549+
if args and isinstance(data, ABCSeries):
550550
msg = ('`Series.plot()` should not be called with positional '
551551
'arguments, only keyword arguments. The order of '
552552
'positional arguments will change in the future. '

0 commit comments

Comments
 (0)