Skip to content

Commit

Permalink
fix mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
ajar98 committed Jul 3, 2024
1 parent 7e4cf43 commit 84afa9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vocode/streaming/output_device/abstract_output_device.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class AbstractOutputDevice(AsyncWorker[InterruptibleEvent[AudioChunk]]):
"""

def __init__(self, sampling_rate: int, audio_encoding: AudioEncoding):
super().__init__(input_queue=asyncio.Queue())
super().__init__()
self.sampling_rate = sampling_rate
self.audio_encoding = audio_encoding

Expand Down

0 comments on commit 84afa9c

Please sign in to comment.