File tree
Expand file treeCollapse file tree1 file changed
+5
-4
lines changed Expand file treeCollapse file tree1 file changed
+5
-4
lines changed Original file line number | Diff line number | Diff line change |
---|
@@ -302,7 +302,8 @@ class IntrospectionSchema(MaybeWithDescription):
|
302 | 302 | directives: list[IntrospectionDirective]
|
303 | 303 |
|
304 | 304 |
|
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 | +) |
You can’t perform that action at this time.
0 commit comments