format+fix
Some checks failed
deploy / deploy (push) Failing after 1m7s

This commit is contained in:
2023-11-14 21:25:55 +03:00
parent 4f3a0dc788
commit 4ecdc08dfc
6 changed files with 20 additions and 21 deletions

View File

@@ -16,7 +16,7 @@ async def check_auth(req):
query_type = "mutation" if INTERNAL_AUTH_SERVER else "query"
operation = "GetUserId"
headers = {"Authorization": token, "Content-Type": "application/json"} # "Bearer " + removed
headers = {"Authorization": token, "Content-Type": "application/json"} # "Bearer " + removed
gql = {
"query": query_type + " " + operation + " { " + query_name + " { user { id } } " + " }",