From c4796604dd01793b50c81681a9fcef1e6c12968d Mon Sep 17 00:00:00 2001 From: insolor <2442833+insolor@users.noreply.github.com> Date: Mon, 2 Dec 2024 01:17:36 +0300 Subject: [PATCH] Remove ignoring of ANN101 rule (as it removed from ruff) --- pyproject.toml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 758a2f9..c44e0e3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -47,10 +47,9 @@ line-length = 120 [tool.ruff.lint] select = ["ALL"] ignore = [ - "T201", # `print` found - "S101", # Use of assert detected - "ANN101", # Missing type annotation for self in method - "C408", # Unnecessary `dict` call (rewrite as a literal) + "T201", # `print` found + "S101", # Use of assert detected + "C408", # Unnecessary `dict` call (rewrite as a literal) "D", # "D100", # Missing docstring in public module # "D104", # Missing docstring in public package