File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,8 @@ class IntrospectionSchema(MaybeWithDescription):
302302
directives: list[IntrospectionDirective]
303303

304304

305-
class IntrospectionQuery(TypedDict):
306-
"""The root typed dictionary for schema introspections."""
307-
308-
__schema: IntrospectionSchema
305+
# The root typed dictionary for schema introspections.
306+
IntrospectionQuery = TypedDict( # noqa: UP013
307+
"IntrospectionQuery",
308+
{"__schema": IntrospectionSchema},
309+
)

0 commit comments

Comments
 (0)