Skip to content

Commit 01ac159

Browse files
committed
Sync client shouldnt be async
1 parent cd5636b commit 01ac159

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

gql/clients/sync.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def __init__(self, endpoint, headers=None):
1515
'Accept-Encoding': 'gzip',
1616
}
1717

18-
async def call(self, query,
18+
def call(self, query,
1919
variables=None,
2020
return_json=False,
2121
on_before_callback: Callable[[Mapping[str, str], Mapping[str, str]], None] = None) -> Union[dict, str]:

0 commit comments

Comments
 (0)