Skip to content

Commit

Permalink
Merge pull request #30 from zemogle/multiprocess
Browse files Browse the repository at this point in the history
Update identify.py
  • Loading branch information
mfitzasp authored Dec 9, 2024
2 parents dcb62db + 082145f commit 220c9f3
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 220c9f3

Please sign in to comment.