Skip to content

Commit ee3cc5e

Browse files
Fix: Typo
1 parent a01cdee commit ee3cc5e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/amrita_sense/streaming.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class SuspendObjectStream(Generic[ObjectTypeT]):
3434
_callback_fun: CALLBACK_TYPE | None = None
3535
_callback_lock: aiologic.Lock
3636
_callback_fun_sending: CALLBACK_TYPE | None = None
37-
_callbacK_sending_lock: aiologic.Lock
37+
_callback_sending_lock: aiologic.Lock
3838

3939
# Stream-related attributes
4040
_send_stream: ObjectSendStream
@@ -59,7 +59,7 @@ def __init__(
5959
self._callback_fun = callback
6060
self._callback_lock = aiologic.Lock()
6161
self._callback_fun_sending = receive_callback
62-
self._callbacK_sending_lock = aiologic.Lock()
62+
self._callback_sending_lock = aiologic.Lock()
6363
self._q_tout = queue_timeout
6464

6565
@staticmethod

0 commit comments

Comments
 (0)