We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a01cdee commit ee3cc5eCopy full SHA for ee3cc5e
1 file changed
src/amrita_sense/streaming.py
@@ -34,7 +34,7 @@ class SuspendObjectStream(Generic[ObjectTypeT]):
34
_callback_fun: CALLBACK_TYPE | None = None
35
_callback_lock: aiologic.Lock
36
_callback_fun_sending: CALLBACK_TYPE | None = None
37
- _callbacK_sending_lock: aiologic.Lock
+ _callback_sending_lock: aiologic.Lock
38
39
# Stream-related attributes
40
_send_stream: ObjectSendStream
@@ -59,7 +59,7 @@ def __init__(
59
self._callback_fun = callback
60
self._callback_lock = aiologic.Lock()
61
self._callback_fun_sending = receive_callback
62
- self._callbacK_sending_lock = aiologic.Lock()
+ self._callback_sending_lock = aiologic.Lock()
63
self._q_tout = queue_timeout
64
65
@staticmethod
0 commit comments