Skip to content

Commit 4d70d5d

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/plotting/_core.py

+1-1
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):
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
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)