Skip to content

Commit 54de9f5

Browse files
Apply ruff rule RUF036
RUF036 `None` not at the end of the type annotation.
1 parent ad54323 commit 54de9f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

uvloop/loop.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ from typing import (
1515
_T = TypeVar('_T')
1616
_Context = dict[str, Any]
1717
_ExceptionHandler = Callable[[asyncio.AbstractEventLoop, _Context], Any]
18-
_SSLContext = bool | None | ssl.SSLContext
18+
_SSLContext = bool | ssl.SSLContext | None
1919
_ProtocolT = TypeVar("_ProtocolT", bound=asyncio.BaseProtocol)
2020

2121
class Loop:

0 commit comments

Comments
 (0)