Skip to content

Commit

Permalink
fix syntax issue
Browse files Browse the repository at this point in the history
  • Loading branch information
semaphoreP committed Jan 8, 2024
1 parent 9437506 commit 4caf29b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion orbitize/gaia.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ def __init__(self, hip_id, hiplogprob, gost_filepath, hgca_filepath=None):
print("Using HGCA catalog stored in {0}".format(hgca_filepath))

# grab the entry from the HGCA
with fits.open(hgca_filepath, ignore_missing_simple=True, , ignore_missing_end=True) as hdulist:
with fits.open(hgca_filepath, ignore_missing_simple=True, ignore_missing_end=True) as hdulist:
hgtable = hdulist[1].data
entry = hgtable[np.where(hgtable['hip_id'] == hip_id)]
# check we matched on a single target. mainly check if we typed hip id number incorrectly
Expand Down

0 comments on commit 4caf29b

Please sign in to comment.