Add various missing generic arguments (#7702)

Co-authored-by: Akuli <akuviljanen17@gmail.com>
This commit is contained in:
Sebastian Rittau
2022-04-27 14:25:35 +02:00
committed by GitHub
parent ae09e4e866
commit 2d468966f5
9 changed files with 17 additions and 14 deletions
+2 -2
View File
@@ -47,10 +47,10 @@ class PdfName:
class PdfArray(list[Any]):
def __bytes__(self): ...
class PdfDict(collections.UserDict):
class PdfDict(collections.UserDict[bytes, Any]):
def __setattr__(self, key, value) -> None: ...
def __getattr__(self, key): ...
def __bytes__(self): ...
def __bytes__(self) -> bytes: ...
class PdfBinary:
data: Any