Skip to content

Commit 6710585

Browse files
committed
Fix CI
1 parent 21a1b76 commit 6710585

File tree

3 files changed

+49
-92
lines changed

3 files changed

+49
-92
lines changed

src/graphql_server/flask/views.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,9 @@ def render_graphql_ide(
135135
) -> Response:
136136
return render_template_string(
137137
self.graphql_ide_html,
138-
query=request_data.query, variables=request_data.variables, operationName=request_data.operation_name,
138+
query=request_data.query,
139+
variables=request_data.variables,
140+
operationName=request_data.operation_name,
139141
) # type: ignore
140142

141143

0 commit comments

Comments
 (0)