Skip to content

Commit 372fa2f

Browse files
committed
pyproject(ruff) Ignore B010 set-attr-with-constant rule for frozen_dataclass
1 parent d886a34 commit 372fa2f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Diff for: pyproject.toml

+3
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,9 @@ convention = "numpy"
217217

218218
[tool.ruff.lint.per-file-ignores]
219219
"*/__init__.py" = ["F401"]
220+
"src/libtmux/_internal/frozen_dataclass.py" = [
221+
"B010", # set-attr-with-constant
222+
]
220223

221224
[tool.pytest.ini_options]
222225
addopts = [

0 commit comments

Comments
 (0)