matplotlib Patch.__init__ accepts any arguments (#91)

This commit is contained in:
Matan Gover 2021-08-24 20:25:05 +03:00 коммит произвёл GitHub
Родитель 15285c6b88
Коммит 4489aea804
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 0 удалений

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

@ -4,6 +4,7 @@ from matplotlib.artist import Artist
class Patch(Artist):
def __init__(self, *args, **kwargs) -> None: ...
def __getattr__(self, name: str) -> Any: ... # incomplete
class Polygon(Patch):