From 27ef54dd2a7f7c28973f374ec627b21fbe1a6940 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 09:12:48 +0800 Subject: [PATCH] =?UTF-8?q?chore(pyproject):=20=E4=BF=AE=E6=94=B9=E6=9C=80?= =?UTF-8?q?=E5=A4=A7=E8=A1=8C=E9=95=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 值太大 uv 会解析失败 --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 1b356ef..fce76ee 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,11 +18,11 @@ dependencies = [ ] [tool.isort] -line_length = 9999999999999999999999999 # 约等于无行长度限制 +line_length = 200 [tool.pylint.main] init-hook = 'import sys; sys.path.append("src")' -max-line-length = 9999999999999999999999999 # 约等于无行长度限制 +max-line-length = 200 notes= [ "FIXME", "XXX"