Skip to content

Fix IntrospectionQuery type definition #234

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 17, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix ruff
  • Loading branch information
sobolevn authored Feb 17, 2025
commit e5d09faa40e98f93398b2209322a3938024e505f
5 changes: 4 additions & 1 deletion src/graphql/utilities/get_introspection_query.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,4 +303,7 @@ class IntrospectionSchema(MaybeWithDescription):


# The root typed dictionary for schema introspections.
IntrospectionQuery = TypedDict("IntrospectionQuery", {"__schema": IntrospectionSchema})
IntrospectionQuery = TypedDict( # noqa: UP013
"IntrospectionQuery",
{"__schema": IntrospectionSchema},
)
Loading