Skip to content

Commit f22bd66

Browse files
committed
Remove pointless noqa
1 parent 8c20a38 commit f22bd66

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

graphql_server/aiohttp/graphqlview.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ async def __call__(self, request):
188188
exec_res,
189189
is_batch=isinstance(data, list),
190190
format_error=self.format_error,
191-
encode=partial(self.encode, pretty=is_pretty), # noqa
191+
encode=partial(self.encode, pretty=is_pretty),
192192
)
193193

194194
if is_graphiql:

graphql_server/flask/graphqlview.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def dispatch_request(self):
120120
execution_results,
121121
is_batch=isinstance(data, list),
122122
format_error=self.format_error,
123-
encode=partial(self.encode, pretty=pretty), # noqa
123+
encode=partial(self.encode, pretty=pretty),
124124
)
125125

126126
if show_graphiql:

graphql_server/quart/graphqlview.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ async def dispatch_request(self):
136136
exec_res,
137137
is_batch=isinstance(data, list),
138138
format_error=self.format_error,
139-
encode=partial(self.encode, pretty=pretty), # noqa
139+
encode=partial(self.encode, pretty=pretty),
140140
)
141141

142142
if show_graphiql:

graphql_server/sanic/graphqlview.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ async def __handle_request(self, request, *args, **kwargs):
141141
exec_res,
142142
is_batch=isinstance(data, list),
143143
format_error=self.format_error,
144-
encode=partial(self.encode, pretty=pretty), # noqa
144+
encode=partial(self.encode, pretty=pretty),
145145
)
146146

147147
if show_graphiql:

graphql_server/webob/graphqlview.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def dispatch_request(self, request):
122122
execution_results,
123123
is_batch=isinstance(data, list),
124124
format_error=self.format_error,
125-
encode=partial(self.encode, pretty=pretty), # noqa
125+
encode=partial(self.encode, pretty=pretty),
126126
)
127127

128128
if show_graphiql:

0 commit comments

Comments
 (0)