Skip to content
Snippets Groups Projects
Commit 671e753c authored by Julius's avatar Julius
Browse files

type fix

parent 7e32534c
Branches
Tags
3 merge requests!41Resolve "Refactor/Documentation?",!39Resolve "Refactor/Documentation",!37Resolve "Refactor/Documentation"
Pipeline #1628503 passed
......@@ -166,7 +166,7 @@ class AxesProxy(Proxy[MplAxes]):
self._plot: Optional[Plot] = None
@inherit_and_extend_doc(MplAxes, "plot", "\n\n Serialized parameters: x, y, color, marker, label. \n\n")
def pie(self, x, **kwargs): # type: ignore
def pie(self, x: Any, **kwargs: Any) -> Any:
"""
Serialized parameters: x, labels, explode, radius, colors, title.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment