Skip to content

Commit

Permalink
Restore #pylint: disable directives
Browse files Browse the repository at this point in the history
  • Loading branch information
marcpaterno committed Jul 8, 2024
1 parent d1d37f7 commit 69befd9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions firecrown/connector/numcosmo/numcosmo.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,9 +243,9 @@ def set_params_from_numcosmo(
)
# pylint: enable=duplicate-code

def calculate_ccl_args(
def calculate_ccl_args( # pylint: disable-msg=too-many-locals
self, mset: Ncm.MSet
) -> dict[str, Any]: # pylint: disable-msg=too-many-locals
) -> dict[str, Any]:
"""Calculate the arguments necessary for CCL for this sample.
:param mset: the NumCosmo MSet object from which to get the parameters
Expand Down Expand Up @@ -552,9 +552,9 @@ def do_begin(self) -> None: # pylint: disable-msg=arguments-differ
during `begin` once and then used afterwards.
"""

def do_prepare(
def do_prepare( # pylint: disable-msg=arguments-differ
self, mset: Ncm.MSet
) -> None: # pylint: disable-msg=arguments-differ
) -> None:
"""Implements the virtual method Ncm.Data `prepare`.
This method should do all the necessary calculations using mset
Expand Down Expand Up @@ -830,9 +830,9 @@ def do_begin(self) -> None: # pylint: disable-msg=arguments-differ
during `begin` once and then used afterwards.
"""

def do_prepare(
def do_prepare( # pylint: disable-msg=arguments-differ
self, mset: Ncm.MSet
) -> None: # pylint: disable-msg=arguments-differ
) -> None:
"""Implements the virtual method Ncm.Data `prepare`.
This method should do all the necessary calculations using mset
Expand Down

0 comments on commit 69befd9

Please sign in to comment.