Skip to content

Commit 8b9f960

Browse files
committed
Improve return type for complete_list_value (fix #132)
1 parent 26cc605 commit 8b9f960

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
@@ -760,7 +760,7 @@ def complete_list_value(
760760
info: GraphQLResolveInfo,
761761
path: Path,
762762
result: Iterable[Any],
763-
) -> AwaitableOrValue[Any]:
763+
) -> AwaitableOrValue[List[Any]]:
764764
"""Complete a list value.
765765
766766
Complete a list value by completing each item in the list with the inner type.

0 commit comments

Comments
 (0)