Skip to content

Commit 51c5cb3

Browse files
committed
revert + exclude fron linting
1 parent bacd290 commit 51c5cb3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pandas/plotting/_core.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1131,7 +1131,9 @@ def line(self, x=None, y=None, **kwargs) -> PlotAccessor:
11311131
)
11321132
@Substitution(kind="bar")
11331133
@Appender(_bar_or_line_doc)
1134-
def barplot(self, x=None, y=None, **kwargs) -> PlotAccessor:
1134+
def bar( # pylint: disable=disallowed-name
1135+
self, x=None, y=None, **kwargs
1136+
) -> PlotAccessor:
11351137
"""
11361138
Vertical bar plot.
11371139

0 commit comments

Comments
 (0)