Skip to content

Commit c479660

Browse files
committed
Remove ignoring of ANN101 rule (as it removed from ruff)
1 parent 6643ce0 commit c479660

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

pyproject.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,9 @@ line-length = 120
4747
[tool.ruff.lint]
4848
select = ["ALL"]
4949
ignore = [
50-
"T201", # `print` found
51-
"S101", # Use of assert detected
52-
"ANN101", # Missing type annotation for self in method
53-
"C408", # Unnecessary `dict` call (rewrite as a literal)
50+
"T201", # `print` found
51+
"S101", # Use of assert detected
52+
"C408", # Unnecessary `dict` call (rewrite as a literal)
5453
"D",
5554
# "D100", # Missing docstring in public module
5655
# "D104", # Missing docstring in public package

0 commit comments

Comments
 (0)