Fix filename generation

This commit is contained in:
2022-01-09 16:15:59 +03:00
parent 5136994dd3
commit feaa3d03cb
3 changed files with 4 additions and 4 deletions

View File

@@ -49,7 +49,7 @@ class BookLibraryClient:
@classmethod
async def _make_request(cls, url) -> dict:
async with httpx.AsyncClient() as client:
async with httpx.AsyncClient(timeout=60) as client:
response = await client.get(url, headers=cls.auth_headers)
return response.json()