We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 585ad0e commit ff06bfcCopy full SHA for ff06bfc
storey/flow.py
@@ -2193,7 +2193,7 @@ async def _do(self, event):
2193
)
2194
runnables_encountered.add(id(runnable))
2195
futures.append(future)
2196
- results: list[_ParallelExecutionRunnableResult] = await asyncio.gather(*futures)
+ results = await asyncio.gather(*futures)
2197
# Check for streaming response (only when a single runnable is selected)
2198
if len(runnables) == 1 and results:
2199
result = results[0]
0 commit comments