Skip to content

Commit 5f6d07a

Browse files
Merge pull request #3 from matplotlib/develop
Remove Deprecated Docstring Decorator
2 parents dec0911 + ad1afda commit 5f6d07a

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

matplotview/_view_axes.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
from typing import Type, List, Optional, Any, Set, Dict, Union
44
from matplotlib.axes import Axes
55
from matplotlib.transforms import Bbox
6-
import matplotlib.docstring as docstring
76
from matplotview._transform_renderer import _TransformRenderer
87
from matplotlib.artist import Artist
98
from matplotlib.backend_bases import RendererBase
@@ -166,7 +165,6 @@ def view_wrapper(axes_class: Type[Axes]) -> Type[Axes]:
166165
if(issubclass(axes_class, Axes) and issubclass(axes_class, __ViewType)):
167166
return axes_class
168167

169-
@docstring.interpd
170168
class View(axes_class, __ViewType):
171169
"""
172170
An axes which automatically displays elements of another axes. Does not
@@ -197,9 +195,7 @@ def __init__(
197195
198196
**kwargs
199197
Other optional keyword arguments supported by the Axes
200-
constructor this ViewAxes wraps:
201-
202-
%(Axes:kwdoc)s
198+
constructor this ViewAxes wraps.
203199
204200
Returns
205201
-------

0 commit comments

Comments
 (0)