Skip to content

Commit

Permalink
Disable pylint too-many-arguments message for init function.
Browse files Browse the repository at this point in the history
  • Loading branch information
jackieblaum committed Oct 3, 2024
1 parent b11664f commit 71d0ab2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions eclipsebin/binning.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ class EclipsingBinaryBinner:
secondary_eclipse (tuple): Start and end phase values of the secondary eclipse.
"""

#pylint: disable-msg=too-many-arguments
def __init__(
self,
phases,
Expand Down Expand Up @@ -83,6 +84,7 @@ def __init__(
# Determine start and end of each eclipse
self.primary_eclipse = self.get_eclipse_boundaries(primary=True)
self.secondary_eclipse = self.get_eclipse_boundaries(primary=False)
#pylint: enable-msg=too-many-arguments

def find_minimum_flux_phase(self, use_shifted_phases=False):
"""
Expand Down

0 comments on commit 71d0ab2

Please sign in to comment.