diff --git a/clmm/theory/ccl.py b/clmm/theory/ccl.py index 281728e0f..c7e492595 100644 --- a/clmm/theory/ccl.py +++ b/clmm/theory/ccl.py @@ -108,7 +108,7 @@ def _update_halo_density_profile(self): """updates halo density profile with set internal properties""" # prepare mdef object if self.massdef == "virial": - self.__delta_mdef = "vir" + self.__delta_mdef = "vir" # noqa self.mdef = ccl.halos.MassDef(self.delta_mdef, self.mdef_dict[self.massdef]) # setting concentration (also updates hdpm) self.cdelta = self.cdelta if self.hdpm else 4.0 # ccl always needs an input concentration diff --git a/pyproject.toml b/pyproject.toml index 5bd0e0a77..9382a0d9e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ line-length = 100 [tool.pylint] max-line-length = 100 -disable = ["R0913"] +disable = ["R0913", "W0238"] good-names = ["ra", "z", "z1", "z2", "a", "a1", "a2", "gt", "gx", "mu", "da", "i", "H0", "Omega_b0", "Omega_dm0", "Omega_k0",