Skip to content

Commit 530672a

Browse files
committed
Remove not applicable note about typing workaround
Replicates graphql/graphql-js@c680b6c
1 parent 18d974b commit 530672a

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

graphql/utilities/build_ast_schema.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,6 @@ def get_wrapped_type(self, node: TypeNode) -> GraphQLType:
199199
return GraphQLList(self.get_wrapped_type(node.type))
200200
if isinstance(node, NonNullTypeNode):
201201
return GraphQLNonNull(
202-
# Note: GraphQLNonNull constructor validates this type
203202
cast(GraphQLNullableType, self.get_wrapped_type(node.type))
204203
)
205204
return self.get_named_type(cast(NamedTypeNode, node))

0 commit comments

Comments
 (0)