We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da87c2f commit e5d09faCopy full SHA for e5d09fa
src/graphql/utilities/get_introspection_query.py
@@ -303,4 +303,7 @@ class IntrospectionSchema(MaybeWithDescription):
303
304
305
# The root typed dictionary for schema introspections.
306
-IntrospectionQuery = TypedDict("IntrospectionQuery", {"__schema": IntrospectionSchema})
+IntrospectionQuery = TypedDict( # noqa: UP013
307
+ "IntrospectionQuery",
308
+ {"__schema": IntrospectionSchema},
309
+)
0 commit comments