format+fix-3
All checks were successful
deploy / deploy (push) Successful in 1m15s

This commit is contained in:
Untone 2023-11-14 21:35:35 +03:00
parent cd2e4a08b3
commit 7964cb1540

View File

@ -54,5 +54,5 @@ async def get_my_followings():
if response.status_code != 200:
return None
r = response.json()
authors = r.get("data", {}).get(query_name).get("authors", [])
authors = r.get("data", {}).get(query_name, {}).get("authors", [])
return authors