We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fb76c3 commit c0295acCopy full SHA for c0295ac
graphene_federation/service.py
@@ -36,7 +36,7 @@ def convert_fields(schema: Schema, fields: list[str]) -> str:
36
def field_to_string(field) -> str:
37
str_field = print_fields(field)
38
# Remove blocks added by `print_block`
39
- block_match = re.match(" \{\n(?P<field_str>.*)\n\}", str_field, flags=re.DOTALL)
+ block_match = re.match(r" \{\n(?P<field_str>.*)\n\}", str_field, flags=re.DOTALL)
40
if block_match:
41
str_field = block_match.groups()[0]
42
return str_field
0 commit comments