Skip to content

Commit

Permalink
add R0917 to pylint disable in pyproject.toml (#642)
Browse files Browse the repository at this point in the history
* add R0917 to pylint disable in pyproject.toml

* Update version to 1.13.2
  • Loading branch information
m-aguena authored Sep 23, 2024
1 parent e788037 commit 7d90ee1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion clmm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@
)
from . import support

__version__ = "1.13.1"
__version__ = "1.13.2"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ line-length = 100

[tool.pylint]
max-line-length = 100
disable = ["R0913"]
disable = ["R0913", "R0917"]
good-names = ["ra", "z", "z1", "z2", "a", "a1", "a2",
"gt", "gx", "mu", "da", "i",
"H0", "Omega_b0", "Omega_dm0", "Omega_k0",
Expand Down

0 comments on commit 7d90ee1

Please sign in to comment.