From 7a337526376c0aee683dc67b0b7baed4f54e268a Mon Sep 17 00:00:00 2001 From: DeadNews Date: Mon, 15 Jul 2024 03:34:49 +0800 Subject: [PATCH] chore: remove `httpx` timeout --- src/images_upload_cli/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/images_upload_cli/main.py b/src/images_upload_cli/main.py index 6c05e47d..228470af 100644 --- a/src/images_upload_cli/main.py +++ b/src/images_upload_cli/main.py @@ -29,7 +29,7 @@ async def upload_images( if thumbnail: font = get_font() - async with AsyncClient(timeout=90) as client: + async with AsyncClient() as client: for img_path in images: img = img_path.read_bytes()