We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b1e83e commit 9bfb3c0Copy full SHA for 9bfb3c0
1 file changed
stubs/gevent/gevent/selectors.pyi
@@ -19,6 +19,6 @@ class GeventSelector(BaseSelector):
19
def unregister(self, fileobj: FileDescriptorLike) -> SelectorKey: ...
20
def select(self, timeout: float | None = None) -> list[tuple[SelectorKey, int]]: ...
21
def close(self) -> None: ...
22
- def get_map(self) -> Mapping[FileDescriptorLike, SelectorKey]: ...
+ def get_map(self) -> Mapping[FileDescriptorLike, SelectorKey]: ... # type: ignore[type-var]
23
24
DefaultSelector = GeventSelector
0 commit comments