Skip to content

Commit

Permalink
fix mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
ajar98 committed Jun 28, 2024
1 parent ab8b932 commit 700b17a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vocode/streaming/utils/worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def terminate(self):
class QueueConsumer(AbstractWorker[WorkerInputType]):
def __init__(
self,
input_queue: asyncio.Queue[WorkerInputType] = None,
input_queue: Optional[asyncio.Queue[WorkerInputType]] = None,
) -> None:
self.input_queue: asyncio.Queue[WorkerInputType] = input_queue or asyncio.Queue()

Expand Down

0 comments on commit 700b17a

Please sign in to comment.