File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 44from functools import partial
55from inspect import isawaitable
66from logging import Logger , getLogger
7- from typing import Awaitable , Callable , Tuple
7+ from typing import Awaitable , Callable
88
99from 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 :
You can’t perform that action at this time.
0 commit comments