We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bced80e commit 5714906Copy full SHA for 5714906
python_graphql_client/graphql_client.py
@@ -85,7 +85,9 @@ async def subscribe(
85
init_payload: dict = {},
86
):
87
"""Make asynchronous request for GraphQL subscription."""
88
- connection_init_message = json.dumps({"type": "connection_init", "payload": init_payload})
+ connection_init_message = json.dumps(
89
+ {"type": "connection_init", "payload": init_payload}
90
+ )
91
92
request_body = self.__request_body(
93
query=query, variables=variables, operation_name=operation_name
0 commit comments