Skip to content

Commit 5bfc3a0

Browse files
committed
Fix return type for inner function as well
1 parent 8b9f960 commit 5bfc3a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/graphql/execution/execute.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -834,7 +834,7 @@ async def await_completed(item: Any, item_path: Path) -> Any:
834834
return completed_results
835835

836836
# noinspection PyShadowingNames
837-
async def get_completed_results() -> Any:
837+
async def get_completed_results() -> List[Any]:
838838
for index, result in zip(
839839
awaitable_indices,
840840
await gather(

0 commit comments

Comments
 (0)