From abf4c5cffd081c88ac1d7d7c9af04e75323e193f Mon Sep 17 00:00:00 2001 From: arabcoders Date: Fri, 30 Jan 2026 21:13:48 +0300 Subject: [PATCH] fix: remove useless log statement. --- app/library/downloads/status_tracker.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/library/downloads/status_tracker.py b/app/library/downloads/status_tracker.py index 0a403ba1..62e4d083 100644 --- a/app/library/downloads/status_tracker.py +++ b/app/library/downloads/status_tracker.py @@ -185,8 +185,7 @@ class StatusTracker: if next_status is None or isinstance(next_status, Terminator): continue await self.process_status_update(next_status) - except Exception as e: - self.logger.warning(f"Error processing status update during drain: {e}") + except Exception: # noqa: S112 continue def cancel_update_task(self) -> None: