Correct several positional-only differences in third-party stubs (#7352)

This commit is contained in:
Alex Waygood
2022-02-22 14:49:51 +00:00
committed by GitHub
parent 69abe56e18
commit 64af11c78f
6 changed files with 23 additions and 23 deletions

View File

@@ -17,4 +17,4 @@ class LookupDict(dict[str, _VT]):
def __init__(self, name: Any = ...) -> None: ...
def __getitem__(self, key: str) -> _VT | None: ... # type: ignore[override]
def __getattr__(self, attr: str) -> _VT: ...
def __setattr__(self, attr: str, value: _VT) -> None: ...
def __setattr__(self, __attr: str, __value: _VT) -> None: ...