We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 392a02d commit 1482e3bCopy full SHA for 1482e3b
taskiq/brokers/inmemory_broker.py
@@ -130,7 +130,7 @@ def __init__(
130
await_inplace: bool = False,
131
) -> None:
132
super().__init__()
133
- self.result_backend = InmemoryResultBackend(
+ self.result_backend: InmemoryResultBackend[Any] = InmemoryResultBackend(
134
max_stored_results=max_stored_results,
135
)
136
self.executor = ThreadPoolExecutor(sync_tasks_pool_size)
0 commit comments