Replace Any with Incomplete in many places (#9565)

This commit is contained in:
Avasam
2023-01-18 14:12:46 -05:00
committed by GitHub
parent a4e3cfefac
commit 6ac24ed923
16 changed files with 55 additions and 48 deletions

View File

@@ -31,10 +31,10 @@ class StubImageFile(ImageFile):
def load(self) -> None: ...
class Parser:
incremental: Any | None
image: Any | None
data: Any | None
decoder: Any | None
incremental: Incomplete | None
image: Incomplete | None
data: Incomplete | None
decoder: Incomplete | None
offset: int
finished: bool
def reset(self) -> None: ...