From 3018bf8c8eac1a4fb8649ba06c5dba1694566384 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=B8=AD=E9=B8=AD=E3=80=8C=E3=82=AB=E3=83=A2=E3=80=8D?= <89643991+DuckDuckStudio@users.noreply.github.com> Date: Tue, 2 Jun 2026 10:14:00 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E8=AE=A9=20PR=20=E6=AD=A3=E6=96=87?= =?UTF-8?q?=E4=B8=AD=E7=9A=84=E5=B7=A5=E5=85=B7=E6=8F=90=E7=A4=BA=E4=B8=8D?= =?UTF-8?q?=E8=A6=81=E5=A4=AA=E7=A2=8D=E7=9C=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/function/constant/general.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/function/constant/general.py b/src/function/constant/general.py index 8a845c6..a57515b 100644 --- a/src/function/constant/general.py +++ b/src/function/constant/general.py @@ -17,13 +17,14 @@ Sundry 的版本 """ -PR_TOOL_NOTE: Final = f"### This PR is automatically created by [Sundry](https://github.com/DuckDuckStudio/Sundry/) {f'{SUNDRY_VERSION} version' if SUNDRY_VERSION in ('develop', 'locale') else f'version {SUNDRY_VERSION}'} 🚀." +# pylint: disable=line-too-long +PR_TOOL_NOTE: Final = f"> This PR is automatically created by [Sundry](https://github.com/DuckDuckStudio/Sundry/) {f'{SUNDRY_VERSION} version' if SUNDRY_VERSION in ('develop', 'locale') else f'version {SUNDRY_VERSION}'} 🚀." """ 拉取请求正文中的 Sundry 工具说明。 - 特殊版本 -### This PR is automatically created by [Sundry](https://github.com/DuckDuckStudio/Sundry/) locale/develop version 🚀. +> This PR is automatically created by [Sundry](https://github.com/DuckDuckStudio/Sundry/) locale/develop version 🚀. - 一般版本 -### This PR is automatically created by [Sundry](https://github.com/DuckDuckStudio/Sundry/) version x.x.x 🚀. +> This PR is automatically created by [Sundry](https://github.com/DuckDuckStudio/Sundry/) version x.x.x 🚀. """