Skip to content

Commit 12abac7

Browse files
committed
chore: ruff
1 parent b7699f2 commit 12abac7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/graphql/utilities/build_client_schema.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ def build_input_object_def(
256256
fields=lambda: build_input_value_def_map(
257257
input_object_introspection["inputFields"]
258258
),
259-
is_one_of= input_object_introspection.get("isOneOf"),
259+
is_one_of=input_object_introspection.get("isOneOf"),
260260
)
261261

262262
type_builders: dict[str, Callable[[IntrospectionType], GraphQLNamedType]] = {

src/graphql/utilities/get_introspection_query.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def get_introspection_query(
5555
maybe_specified_by_url = "specifiedByURL" if specified_by_url else ""
5656
maybe_directive_is_repeatable = "isRepeatable" if directive_is_repeatable else ""
5757
maybe_schema_description = maybe_description if schema_description else ""
58-
maybe_input_object_one_of = 'isOneOf' if input_object_one_of else "";
58+
maybe_input_object_one_of = "isOneOf" if input_object_one_of else ""
5959

6060
def input_deprecation(string: str) -> str | None:
6161
return string if input_value_deprecation else ""

0 commit comments

Comments
 (0)