Skip to content

Commit

Permalink
Update identify.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mfitzasp authored Oct 18, 2023
1 parent aaeab1a commit c6a5bcd
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 @@ -485,7 +485,7 @@ def find_stars(targets, paths, fileList, nopanstarrs=False, nosdss=False, closer
imgRejFlag=1

# if the rejectstar list is not empty, remove the stars from the reference List
if rejectStars != []:
if len(rejectStars) != 0:

if not (((len(rejectStars) / referenceFrame.shape[0]) > starreject) and rejStartCounter > rejectStart):
referenceFrame = delete(referenceFrame, rejectStars, axis=0)
Expand Down

0 comments on commit c6a5bcd

Please sign in to comment.