8000 WIP: Custom frozen dataclasses by tony · Pull Request #586 · tmux-python/libtmux · GitHub
[go: up one dir, main page]

Skip to content

WIP: Custom frozen dataclasses #586

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 9 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
pyproject(ruff) Ignore B010 set-attr-with-constant rule for frozen_da…
…taclass
  • Loading branch information
tony committed Apr 6, 2025
commit c94a53655eca5b29f3eb04032c61ecbc23c2fa07
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,9 @@ convention = "numpy"

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

[tool.pytest.ini_options]
addopts = [
Expand Down
0