Skip to content

Commit 9d128cd

Browse files
committed
Fix.
1 parent ca27826 commit 9d128cd

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

pyproject.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,6 @@ unsafe-fixes = true
118118

119119
[tool.ruff.lint]
120120
extend-ignore = [
121-
"ANN101", # type annotating self
122-
"ANN102", # type annotating cls
123121
"ANN401", # flake8-annotate typing.Any
124122
"COM812", # Comply with ruff-format.
125123
"ISC001", # Comply with ruff-format.

src/pytask_parallel/logging.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Contains code relevant to logging."""
1+
"""Contains code relevant to logging.""" # noqa: A005
22

33
from __future__ import annotations
44

src/pytask_parallel/typing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Contains functions related to typing."""
1+
"""Contains functions related to typing.""" # noqa: A005
22

33
from pathlib import Path
44
from pathlib import PosixPath

0 commit comments

Comments
 (0)