We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9af9af commit 190f5cdCopy full SHA for 190f5cd
src/graphql/type/definition.py
@@ -669,7 +669,7 @@ def is_required_argument(arg: GraphQLArgument) -> bool:
669
return is_non_null_type(arg.type) and arg.default_value is Undefined
670
671
672
-T = TypeVar("T")
+T = TypeVar("T", bound=Collection)
673
Thunk = Union[Callable[[], T], T]
674
675
GraphQLFieldMap = Dict[str, GraphQLField]
0 commit comments