Skip to content

Commit e669605

Browse files
authored
Update views.py
1 parent d40ede9 commit e669605

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphene_django/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def dispatch(self, request, *args, **kwargs):
106106
if self.batch:
107107
responses = [self.get_response(request, entry) for entry in data]
108108
if not responses:
109-
result, status_code = self.get_response(request, data, show_graphiql)
109+
result, status_code = self.get_response(request, data, show_graphiql)
110110
else:
111111
result = '[{}]'.format(','.join([response[0] for response in responses]))
112112
status_code = max(responses, key=lambda response: response[1])[1]

0 commit comments

Comments
 (0)