Skip to content

Commit

Permalink
Update identify.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mfitzasp committed Dec 9, 2024
1 parent 1c34a21 commit 082145f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion astrosource/identify.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ def convert_photometry_files(filelist, ignoreedgefraction=0.05, lowestcounts=180
def process_file(fn, racut, deccut, radiuscut, ignoreedgefraction, lowestcounts, logger):
try:
# Read the file
photFile = genfromtxt(fn, dtype=float, delimiter=',', skip_header=1)
photFile = genfromtxt(fn, dtype=float, delimiter=',', skip_header=1, invalid_raise=False)
logger.info(fn)

# Validate file shape and range
Expand Down

0 comments on commit 082145f

Please sign in to comment.