Fix a syntax error in the matplotlib stubs (#75)
This commit is contained in:
Родитель
0e833ea3b5
Коммит
eb73f8a87d
|
@ -401,8 +401,9 @@ class Axes(_AxesBase):
|
|||
have_units: Any # TODO
|
||||
|
||||
def hexbin(
|
||||
self
|
||||
x: ArrayLike, y: ArrayLike,
|
||||
self,
|
||||
x: ArrayLike,
|
||||
y: ArrayLike,
|
||||
C: Optional[ArrayLike] = ...,
|
||||
gridsize: Union[int, Tuple[int, int]] = ...,
|
||||
bins: Optional[Union[Literal["log"], int, Sequence[Any]]] = ...,
|
||||
|
|
|
@ -7,7 +7,7 @@ from PIL.Image import Image as PILImage
|
|||
|
||||
from matplotlib._typing import ArrayLike, ndarray
|
||||
from matplotlib.artist import Artist
|
||||
from matplotlib.axes import Axes
|
||||
from matplotlib.axes._axes import Axes
|
||||
from matplotlib.backend_bases import LocationEvent, MouseEvent, RendererBase
|
||||
from matplotlib.cm import Colormap, ScalarMappable
|
||||
from matplotlib.colors import Normalize
|
||||
|
|
Загрузка…
Ссылка в новой задаче