From 3d7107e79dfdd23d51413a86b6d2998de22f6ed9 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 5 Feb 2026 07:15:33 +0000 Subject: [PATCH] fix: resolve CI lint and type errors --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 6369c55..8a9753b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -69,6 +69,8 @@ include = "\\.pyi?$" [tool.ruff] line-length = 100 target-version = "py310" + +[tool.ruff.lint] select = ["E", "W", "F", "I", "UP", "B", "C4", "A", "SIM", "ARG", "PL", "RUF"] ignore = ["E501", "B008", "C901"]