From 5135b58aeda86c3855b119b655d7b97cd9daf110 Mon Sep 17 00:00:00 2001 From: insolor <2442833+insolor@users.noreply.github.com> Date: Sun, 2 Aug 2026 09:07:29 +0300 Subject: [PATCH] Ignore CPY001 check in pyproject.toml Added CPY001 to the list of ignored checks. --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 35a2bb8..9f3a0b3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,6 +50,7 @@ ignore = [ "T201", # `print` found "S101", # Use of assert detected "C408", # Unnecessary `dict` call (rewrite as a literal) + "CPY001", "D", # "D100", # Missing docstring in public module # "D104", # Missing docstring in public package