🌐 AI搜索 & 代理 主页
Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion lib/matplotlib/backend_bases.py
Original file line number Diff line number Diff line change
Expand Up @@ -1262,7 +1262,7 @@ class LocationEvent(Event):
xdata, ydata : float or None
Data coordinates of the mouse within *inaxes*, or *None* if the mouse
is not over an Axes.
modifiers : frozenset
modifiers : frozenset[str]
The keyboard modifiers currently being pressed (except for KeyEvent).
"""

Expand Down
1 change: 1 addition & 0 deletions lib/matplotlib/backend_bases.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,7 @@ class LocationEvent(Event):
inaxes: Axes | None
xdata: float | None
ydata: float | None
modifiers: frozenset[str]
def __init__(
self,
name: str,
Expand Down
Loading