Skip to content

Commit 358d0e8

Browse files
authored
Fix IntrospectionQuery type definition
`TypedDict` mangles private names as regular Python classes do. So, `__schema` name will become `_IntrospectionQuery__schema` instead. See python/cpython#129567 Found during python/mypy#16715
1 parent 44334f3 commit 358d0e8

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/graphql/utilities/get_introspection_query.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,5 @@ 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("IntrospectionQuery", [("__schema", IntrospectionSchema)])

0 commit comments

Comments
 (0)