Bump mypy (and a few other test dependencies) (#11196)

This commit is contained in:
Alex Waygood
2023-12-21 22:57:58 +00:00
committed by GitHub
parent c1137ee364
commit 16933b838e
12 changed files with 17 additions and 18 deletions

View File

@@ -17,9 +17,6 @@ Xlib.protocol.rq.*.structcode
# Should only ever be str once instantiated
Xlib.protocol.rq.*.name
# Structs generate their attributes (@type_check_only)
Xlib.protocol.rq.Struct.__getattr__
# Iteration variable that bleeds into the global scope
Xlib.protocol.rq.c
Xlib.protocol.rq.size

View File

@@ -365,7 +365,6 @@ class GetAttrData:
# GetAttrData classes get their attributes dynamically
# TODO: Complete all classes inheriting from GetAttrData
def __getattr__(self, attr: str) -> Any: ...
@type_check_only
def __setattr__(self, __name: str, __value: Any) -> None: ...
class DictWrapper(GetAttrData):