From 33e08af49485b6bbd1a0c9a186ff84394b2c7505 Mon Sep 17 00:00:00 2001 From: Thiago Bellini Ribeiro Date: Sun, 9 Feb 2025 12:38:08 +0100 Subject: [PATCH] add missing blank spaces between the input --- tests/test_printer/test_schema_directives.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_printer/test_schema_directives.py b/tests/test_printer/test_schema_directives.py index 70c9fe5d3c..3ef7804927 100644 --- a/tests/test_printer/test_schema_directives.py +++ b/tests/test_printer/test_schema_directives.py @@ -736,7 +736,7 @@ def foo(self, info) -> str: ... directive @fooDirective(input: FooInput!, optionalInput: FooInput) on FIELD_DEFINITION type Query { - foo: String! @fooDirective(input: {a: "something"}) + foo: String! @fooDirective(input: { a: "something" }) } input FooInput {