Skip to content

Commit ff06bfc

Browse files
remove hint
1 parent 585ad0e commit ff06bfc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

storey/flow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2193,7 +2193,7 @@ async def _do(self, event):
21932193
)
21942194
runnables_encountered.add(id(runnable))
21952195
futures.append(future)
2196-
results: list[_ParallelExecutionRunnableResult] = await asyncio.gather(*futures)
2196+
results = await asyncio.gather(*futures)
21972197
# Check for streaming response (only when a single runnable is selected)
21982198
if len(runnables) == 1 and results:
21992199
result = results[0]

0 commit comments

Comments
 (0)