stat-aliased-select-fix-3

This commit is contained in:
Untone 2024-06-12 12:48:09 +03:00
parent 9580282c79
commit e32baa8d8f

View File

@ -12,7 +12,7 @@ async def request_data(gql, headers=None):
if headers is None: if headers is None:
headers = {"Content-Type": "application/json"} headers = {"Content-Type": "application/json"}
try: try:
logger.debug(AUTH_URL, gql, headers) # logger.debug(f"{AUTH_URL} {gql} {headers}")
async with httpx.AsyncClient() as client: async with httpx.AsyncClient() as client:
response = await client.post(AUTH_URL, json=gql, headers=headers) response = await client.post(AUTH_URL, json=gql, headers=headers)
if response.status_code == 200: if response.status_code == 200: