Skip to content

Commit

Permalink
Fix: Lint Error
Browse files Browse the repository at this point in the history
  • Loading branch information
arunsureshkumar committed Dec 10, 2023
1 parent cadcb11 commit ccd7d89
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions graphene_federation/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ def _get_query(schema: Schema, query_cls: Optional[ObjectType] = None) -> Object


def build_schema(
query: Optional[ObjectType] = None,
mutation: Optional[ObjectType] = None,
enable_federation_2=False,
schema: Optional[Schema] = None,
**kwargs
query: Optional[ObjectType] = None,
mutation: Optional[ObjectType] = None,
enable_federation_2=False,
schema: Optional[Schema] = None,
**kwargs
) -> Schema:
schema = schema or Schema(query=query, mutation=mutation, **kwargs)
schema.auto_camelcase = kwargs.get("auto_camelcase", True)
Expand Down

0 comments on commit ccd7d89

Please sign in to comment.