Skip to content

Commit 94b6ce9

Browse files
committed
more mypy fixes
1 parent 48b675c commit 94b6ce9

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 # type: ignore
55+
self.current_audio_chunk: np.ndarray | None = None
5656
self.chunk_position = 0
5757

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

0 commit comments

Comments
 (0)