Skip to content

Commit a7dea07

Browse files
committed
Add pyright ignore
1 parent c9c122c commit a7dea07

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

stdlib/asyncio/__init__.pyi

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,18 +34,18 @@ else:
3434
from .unix_events import *
3535

3636
if sys.version_info >= (3, 14):
37-
from .events import _AbstractEventLoopPolicy as AbstractEventLoopPolicy
37+
from .events import _AbstractEventLoopPolicy as AbstractEventLoopPolicy # pyright: ignore[reportUnusedImport]
3838

3939
if 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
)
4646
else:
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

5050
if sys.platform == "win32":
5151
if sys.version_info >= (3, 14):

0 commit comments

Comments
 (0)