File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -34,18 +34,18 @@ else:
3434 from .unix_events import *
3535
3636if sys .version_info >= (3 , 14 ):
37- from .events import _AbstractEventLoopPolicy as AbstractEventLoopPolicy
37+ from .events import _AbstractEventLoopPolicy as AbstractEventLoopPolicy # pyright: ignore[reportUnusedImport]
3838
3939if sys .platform == "win32" :
4040 if sys .version_info >= (3 , 14 ):
4141 from .windows_events import (
42- _DefaultEventLoopPolicy as DefaultEventLoopPolicy ,
43- _WindowsProactorEventLoopPolicy as WindowsProactorEventLoopPolicy ,
44- _WindowsSelectorEventLoopPolicy as WindowsSelectorEventLoopPolicy ,
42+ _DefaultEventLoopPolicy as DefaultEventLoopPolicy , # pyright: ignore[reportUnusedImport]
43+ _WindowsProactorEventLoopPolicy as WindowsProactorEventLoopPolicy , # pyright: ignore[reportUnusedImport]
44+ _WindowsSelectorEventLoopPolicy as WindowsSelectorEventLoopPolicy , # pyright: ignore[reportUnusedImport]
4545 )
4646else :
4747 if sys .version_info >= (3 , 14 ):
48- from .unix_events import _DefaultEventLoopPolicy as DefaultEventLoopPolicy
48+ from .unix_events import _DefaultEventLoopPolicy as DefaultEventLoopPolicy # pyright: ignore[reportUnusedImport]
4949
5050if sys .platform == "win32" :
5151 if sys .version_info >= (3 , 14 ):
You can’t perform that action at this time.
0 commit comments