Fix a syntax error in the matplotlib stubs (#75)

This commit is contained in:
thomkeh 2021-06-23 19:08:01 +01:00 коммит произвёл GitHub
Родитель 0e833ea3b5
Коммит eb73f8a87d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 4 добавлений и 3 удалений

Просмотреть файл

@ -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