Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/matplotlib/axes/_axes.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ class Axes(_AxesBase):
def annotate(
self,
text: str,
xy: tuple[float, float],
xytext: tuple[float, float] | None = ...,
xy: tuple[Any, Any],
xytext: tuple[Any, Any] | None = ...,
xycoords: CoordsType = ...,
textcoords: CoordsType | None = ...,
arrowprops: dict[str, Any] | None = ...,
Expand Down
Loading