File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -54,5 +54,8 @@ matplotlib\.animation\.EventSourceProtocol
5454# https://github.com/python/mypy/issues/19877
5555matplotlib\.ft2font\.GlyphIndexType\.__init__
5656
57+ # getitem method only exists for 3.11 deprecation backcompatability
58+ matplotlib.container.PieContainer.__getitem__
59+
5760# 3.12 deprecation
5861matplotlib\.axes\._base\._AxesBase\.ArtistList
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ class ErrorbarContainer(Container):
5757 ** kwargs
5858 ) -> None : ...
5959
60- class PieContainer ( Container ) :
60+ class PieContainer :
6161 wedges : list [Wedge ]
6262 def __init__ (
6363 self ,
@@ -74,6 +74,7 @@ class PieContainer(Container):
7474 def add_texts (self ,
7575 texts : list [Text ],
7676 ) -> None : ...
77+ def remove (self ) -> None : ...
7778
7879class StemContainer (Container ):
7980 markerline : Line2D
You can’t perform that action at this time.
0 commit comments