Skip to content

Commit 2628580

Browse files
committed
ruff: use a per file ignore for check A005 w.r.t. signal.py
Signed-off-by: Andreas Lauser <[email protected]>
1 parent eedfffa commit 2628580

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ lint.ignore = [
101101
"E501", # line too long
102102
"F541", # f-string-missing-placeholders
103103
"RUF012", # mutable-class-default
104-
"A005", # Module shadows a Python standard-library module (needed for signal)
105104
]
106105
lint.isort.known-first-party = ["cantools"]
107106
lint.per-file-ignores."__init__.py" = ["F401"]
107+
lint.per-file-ignores."signal.py" = ["A005"]

0 commit comments

Comments
 (0)