We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca27826 commit 9d128cdCopy full SHA for 9d128cd
3 files changed
pyproject.toml
@@ -118,8 +118,6 @@ unsafe-fixes = true
118
119
[tool.ruff.lint]
120
extend-ignore = [
121
- "ANN101", # type annotating self
122
- "ANN102", # type annotating cls
123
"ANN401", # flake8-annotate typing.Any
124
"COM812", # Comply with ruff-format.
125
"ISC001", # Comply with ruff-format.
src/pytask_parallel/logging.py
@@ -1,4 +1,4 @@
1
-"""Contains code relevant to logging."""
+"""Contains code relevant to logging.""" # noqa: A005
2
3
from __future__ import annotations
4
src/pytask_parallel/typing.py
-"""Contains functions related to typing."""
+"""Contains functions related to typing.""" # noqa: A005
from pathlib import Path
from pathlib import PosixPath
0 commit comments