Remove bare Incomplete annotations in third-party stubs (#11671)

This commit is contained in:
Sebastian Rittau
2024-03-31 03:34:51 +02:00
committed by GitHub
parent 6cb57b5f26
commit 33de88879f
33 changed files with 76 additions and 99 deletions

View File

@@ -84,4 +84,4 @@ class HTML2FPDF(HTMLParser):
def error(self, message: str) -> None: ...
class HTMLMixin:
def __init__(self, *args: Incomplete, **kwargs: Incomplete) -> None: ...
def __init__(self, *args, **kwargs) -> None: ...