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 74f4c96 commit 1a76a27Copy full SHA for 1a76a27
uvloop/__init__.py
@@ -161,7 +161,9 @@ def install() -> None:
161
162
class EventLoopPolicy(
163
# This is to avoid a mypy error about AbstractEventLoopPolicy
164
- getattr(__asyncio, 'AbstractEventLoopPolicy') # type: ignore[misc]
+ getattr( # type: ignore[misc]
165
+ __asyncio, 'AbstractEventLoopPolicy'
166
+ ) # noqa: B009
167
):
168
"""Event loop policy for uvloop.
169
0 commit comments