Upgrade Black and Ruff (#13443)

This commit is contained in:
Alex Waygood
2025-01-29 22:47:58 +00:00
committed by GitHub
parent 89b49d207b
commit c193cd2a36
8 changed files with 11 additions and 11 deletions

View File

@@ -7,7 +7,7 @@ from typing_extensions import Self
from serial import Serial
_P = TypeVar("_P", bound=Protocol, default="Protocol") # noqa: Y020
_P = TypeVar("_P", bound=Protocol, default=Protocol)
class Protocol:
def connection_made(self, transport: ReaderThread[Self]) -> None: ...