Skip to content

Commit

Permalink
Move pylint disable too-many-arguments to top of file.
Browse files Browse the repository at this point in the history
  • Loading branch information
jackieblaum committed Oct 3, 2024
1 parent 067f490 commit a48eafd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion eclipsebin/binning.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pylint: disable=too-many-arguments
"""
This module contains the EclipsingBinaryBinner class, which performs non-uniform binning
of eclipsing binary star light curves.
Expand Down Expand Up @@ -26,7 +27,7 @@ class EclipsingBinaryBinner:
secondary_eclipse (tuple): Start and end phase values of the secondary eclipse.
"""

def __init__( #pylint: disable=too-many-arguments
def __init__(
self,
phases,
fluxes,
Expand Down

0 comments on commit a48eafd

Please sign in to comment.