From ad14df4615b9062b193d6c99db8da071f5709100 Mon Sep 17 00:00:00 2001 From: Matthew Roeschke <10647082+mroeschke@users.noreply.github.com> Date: Wed, 15 Nov 2023 11:09:55 -0800 Subject: [PATCH] Multiple ignores --- pandas/plotting/_matplotlib/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/plotting/_matplotlib/core.py b/pandas/plotting/_matplotlib/core.py index eaeba710db3f6..6be8284d2a0be 100644 --- a/pandas/plotting/_matplotlib/core.py +++ b/pandas/plotting/_matplotlib/core.py @@ -1602,7 +1602,7 @@ def _ts_plot(self, ax: Axes, x, data: Series, style=None, **kwds): lines = self._plot(ax, data.index, np.asarray(data.values), style=style, **kwds) # set date formatter, locators and rescale limits # TODO #54485 - format_dateaxis(ax, ax.freq, data.index) # type: ignore[arg-type] + format_dateaxis(ax, ax.freq, data.index) # type: ignore[arg-type, attr-defined] return lines @final