Skip to content

Commit 977ea84

Browse files
author
Rafael Pierre
committed
tests, mypy
1 parent 0278ab5 commit 977ea84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/realtime/cli/demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def __init__(self) -> None:
5252
# Audio output state for callback system
5353
self.output_queue: queue.Queue[Any] = queue.Queue(maxsize=10) # Buffer more chunks
5454
self.interrupt_event = threading.Event()
55-
self.current_audio_chunk: np.ndarray | None = None
55+
self.current_audio_chunk: np.ndarray[Any, Any] | None = None
5656
self.chunk_position = 0
5757

5858
def _output_callback(self, outdata, frames: int, time, status) -> None:

0 commit comments

Comments
 (0)