Skip to content

Commit

Permalink
Improve return type for complete_list_value (fix #132)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cito committed May 5, 2021
1 parent 26cc605 commit 8b9f960
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/graphql/execution/execute.py
Original file line number Diff line number Diff line change
Expand Up @@ -760,7 +760,7 @@ def complete_list_value(
info: GraphQLResolveInfo,
path: Path,
result: Iterable[Any],
) -> AwaitableOrValue[Any]:
) -> AwaitableOrValue[List[Any]]:
"""Complete a list value.
Complete a list value by completing each item in the list with the inner type.
Expand Down

0 comments on commit 8b9f960

Please sign in to comment.