Skip to content

Commit ef5ecca

Browse files
committed
Run formatting
1 parent c9ca66b commit ef5ecca

File tree

5 files changed

+7
-15
lines changed

5 files changed

+7
-15
lines changed

graphql_server/aiohttp/graphqlview.py

+2-6
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,7 @@
44
from typing import List
55

66
from aiohttp import web
7-
from graphql import (
8-
ExecutionResult,
9-
GraphQLError,
10-
specified_rules
11-
)
7+
from graphql import ExecutionResult, GraphQLError, specified_rules
128
from graphql.type.schema import GraphQLSchema
139

1410
from graphql_server import (
@@ -159,7 +155,7 @@ async def __call__(self, request):
159155
root_value=self.get_root_value(),
160156
context_value=self.get_context(request),
161157
middleware=self.get_middleware(),
162-
validation_rules=self.get_validation_rules()
158+
validation_rules=self.get_validation_rules(),
163159
)
164160

165161
exec_res = (

graphql_server/flask/graphqlview.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def dispatch_request(self):
102102
root_value=self.get_root_value(),
103103
context_value=self.get_context(),
104104
middleware=self.get_middleware(),
105-
validation_rules=self.get_validation_rules()
105+
validation_rules=self.get_validation_rules(),
106106
)
107107
result, status_code = encode_execution_results(
108108
execution_results,

graphql_server/quart/graphqlview.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ async def dispatch_request(self):
104104
root_value=self.get_root_value(),
105105
context_value=self.get_context(),
106106
middleware=self.get_middleware(),
107-
validation_rules=self.get_validation_rules()
107+
validation_rules=self.get_validation_rules(),
108108
)
109109
exec_res = (
110110
[

graphql_server/sanic/graphqlview.py

+2-6
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,7 @@
44
from functools import partial
55
from typing import List
66

7-
from graphql import (
8-
ExecutionResult,
9-
GraphQLError,
10-
specified_rules
11-
)
7+
from graphql import ExecutionResult, GraphQLError, specified_rules
128
from graphql.type.schema import GraphQLSchema
139
from sanic.response import HTTPResponse, html
1410
from sanic.views import HTTPMethodView
@@ -113,7 +109,7 @@ async def dispatch_request(self, request, *args, **kwargs):
113109
root_value=self.get_root_value(),
114110
context_value=self.get_context(request),
115111
middleware=self.get_middleware(),
116-
validation_rules=self.get_validation_rules()
112+
validation_rules=self.get_validation_rules(),
117113
)
118114
exec_res = (
119115
[

graphql_server/webob/graphqlview.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def dispatch_request(self, request):
105105
root_value=self.get_root_value(),
106106
context_value=self.get_context(request),
107107
middleware=self.get_middleware(),
108-
validation_rules=self.get_validation_rules()
108+
validation_rules=self.get_validation_rules(),
109109
)
110110
result, status_code = encode_execution_results(
111111
execution_results,

0 commit comments

Comments
 (0)