Skip to content

Commit c94a536

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

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,9 @@ convention = "numpy"
212212

213213
[tool.ruff.lint.per-file-ignores]
214214
"*/__init__.py" = ["F401"]
215+
"src/libtmux/_internal/frozen_dataclass.py" = [
216+
"B010", # set-attr-with-constant
217+
]
215218

216219
[tool.pytest.ini_options]
217220
addopts = [

0 commit comments

Comments
 (0)