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

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

View File

@ -24,7 +24,7 @@ async def get_all_authors():
import traceback
traceback.print_exc()
print(f"[services.core] {query_name}: {response.status_code} {response.text}")
print(f"[services.core] {query_name}: {response.status_code} {len(response.text)} bytes")
if response.status_code != 200:
return None
r = response.json()
@ -50,7 +50,7 @@ async def get_my_followings():
import traceback
traceback.print_exc()
print(f"[services.core] {query_name}: {response.status_code} {response.text}")
print(f"[services.core] {query_name}: {response.status_code} {len(response.text)} bytes")
if response.status_code != 200:
return None
r = response.json()