From e688d2777d5ce4f24c18467d032bcd459c4c72d8 Mon Sep 17 00:00:00 2001 From: MingxuanGame Date: Sun, 30 Nov 2025 00:43:33 +0800 Subject: [PATCH] chore(linter): make ruff happy --- app/fetcher/_base.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/fetcher/_base.py b/app/fetcher/_base.py index 681ff5c..cfc7b44 100644 --- a/app/fetcher/_base.py +++ b/app/fetcher/_base.py @@ -189,14 +189,16 @@ class BaseFetcher: ex=token_data["expires_in"], ) logger.success( - f"Granted new access token for client {self.client_id}, expires in {token_data['expires_in']} seconds" + f"Granted new access token for client {self.client_id}, " + f"expires in {token_data['expires_in']} seconds" ) return except TimeoutException as exc: last_error = exc logger.warning( - f"Timed out while requesting access token for client {self.client_id} (attempt {attempt}/{retries})" + f"Timed out while requesting access token for " + f"client {self.client_id} (attempt {attempt}/{retries})" ) except HTTPStatusError as exc: last_error = exc