Dane Sabo 3299181c70 Auto sync: 2025-09-02 22:47:53 (10335 files changed)
M  lazy-lock.json

M  lua/custom/configs/lspconfig.lua

M  lua/custom/init.lua

A  lua/custom/journal.lua

A  nvim_venv/bin/Activate.ps1

A  nvim_venv/bin/activate

A  nvim_venv/bin/activate.csh

A  nvim_venv/bin/activate.fish
2025-09-02 22:47:53 -04:00

32 lines
831 B
Python

from typing import Any, Literal
from matplotlib.axes import Axes
from matplotlib.backend_bases import Event, MouseButton
from matplotlib.widgets import AxesWidget, Widget
def get_ax() -> Axes: ...
def noop(*args: Any, **kwargs: Any) -> None: ...
def mock_event(
ax: Axes,
button: MouseButton | int | Literal["up", "down"] | None = ...,
xdata: float = ...,
ydata: float = ...,
key: str | None = ...,
step: int = ...,
) -> Event: ...
def do_event(
tool: AxesWidget,
etype: str,
button: MouseButton | int | Literal["up", "down"] | None = ...,
xdata: float = ...,
ydata: float = ...,
key: str | None = ...,
step: int = ...,
) -> None: ...
def click_and_drag(
tool: Widget,
start: tuple[float, float],
end: tuple[float, float],
key: str | None = ...,
) -> None: ...