Skip to content

Commit 794b98d

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 131e41a commit 794b98d

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

pycrdt_websocket/yroom.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from functools import partial
55
from inspect import isawaitable
66
from logging import Logger, getLogger
7-
from typing import Awaitable, Callable, Tuple
7+
from typing import Awaitable, Callable
88

99
from anyio import (
1010
TASK_STATUS_IGNORED,
@@ -42,6 +42,7 @@ class YRoom:
4242
_stopped: Event
4343
__start_lock: Lock | None
4444
_subscription: Subscription | None
45+
4546
def __init__(
4647
self,
4748
ready: bool = True,
@@ -82,12 +83,12 @@ def __init__(
8283
self.exception_handler = exception_handler
8384
self._stopped = Event()
8485
self._update_send_stream, self._update_receive_stream = create_memory_object_stream(
85-
max_buffer_size=65536
86+
max_buffer_size=65536
8687
)
8788
self._task_group = None
8889
self._started = None
8990
self.__start_lock = None
90-
self._subscription= None
91+
self._subscription = None
9192

9293
@property
9394
def _start_lock(self) -> Lock:

0 commit comments

Comments
 (0)