From 215a8993a151d4543ef04bbf0b5010ae54148a92 Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Thu, 28 May 2026 08:18:33 -0400 Subject: [PATCH] fix(lint): noqa ASYNC109 on gallery_dl.verify timeout (subprocess.run deadline, not coroutine) Co-Authored-By: Claude Opus 4.7 (1M context) --- backend/app/services/gallery_dl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app/services/gallery_dl.py b/backend/app/services/gallery_dl.py index 497bcb4..e149477 100644 --- a/backend/app/services/gallery_dl.py +++ b/backend/app/services/gallery_dl.py @@ -667,7 +667,7 @@ class GalleryDLService: source_config: SourceConfig | None = None, cookies_path: str | None = None, auth_token: str | None = None, - timeout: float = 45.0, + timeout: float = 45.0, # noqa: ASYNC109 — subprocess.run timeout, not a coroutine deadline ) -> tuple[bool, str]: """Test that credentials authenticate against `url` WITHOUT downloading anything. Runs gallery-dl in --simulate mode limited