Skip to content

Commit

Permalink
Incorrect Formatting (#362)
Browse files Browse the repository at this point in the history
This is the incorrect formatting for the input variables in the `reduce` function.
  • Loading branch information
kjkoeller authored Apr 22, 2024
1 parent 6d52026 commit 50cf64e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EclipsingBinaries/IRAF_Reduction.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ def new_default():
return gain, rdnoise, dark_bool


def reduce(ccd, overscan_region, trim_region, num, zero, combined_dark, good_flat, gain=gain, rdnoise=rdnoise):
def reduce(ccd, overscan_region, trim_region, num, zero, combined_dark, good_flat, gain, rdnoise):
"""
This function takes the information for each section of the reduction process into a singular function for
limits in duplication of the code.
Expand Down

0 comments on commit 50cf64e

Please sign in to comment.