From c5713a89e78bdb3f65859cbfc3ebbdbbd572aa5d Mon Sep 17 00:00:00 2001 From: xiaoxia Date: Mon, 13 Jul 2026 16:29:31 +0800 Subject: [PATCH] =?UTF-8?q?fix(ci):=20ci=5Fnotify=5Fsuccess.py=20black?= =?UTF-8?q?=E6=A0=BC=E5=BC=8F=E5=8C=96=E4=BF=AE=E5=A4=8D=20-=20line-length?= =?UTF-8?q?=3D120=E5=AF=B9=E9=BD=90=E9=A1=B9=E7=9B=AE=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/ci_notify_success.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/scripts/ci_notify_success.py b/scripts/ci_notify_success.py index 73c81b5ae..873aa5424 100644 --- a/scripts/ci_notify_success.py +++ b/scripts/ci_notify_success.py @@ -11,9 +11,7 @@ def main() -> int: webhook = os.environ.get("CI_NOTIFY_WEBHOOK", "") if not webhook: print("未配置 CI_NOTIFY_WEBHOOK,跳过成功通知") - print( - "如需启用,请在仓库 Settings -> Secrets and variables -> Actions 中添加 CI_NOTIFY_WEBHOOK" - ) + print("如需启用,请在仓库 Settings -> Secrets and variables -> Actions 中添加 CI_NOTIFY_WEBHOOK") return 0 success_job = os.environ.get("SUCCESS_JOB", "Unknown Job")