Skip to content

Commit

Permalink
Fix nonecheck
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandergagliano committed Oct 25, 2023
1 parent 92173f2 commit 119cbe7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion astro_ghost/DLR.py
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ def chooseByGladeDLR(path, fn, snDF, verbose=False, todo='r', GWGC=None):
foundHostDF = []
noGladeHosts = []

if GWGC:
if GWGC is not None:
GWGC_coords = SkyCoord(GWGC['RAJ2000'].values, GWGC['DEJ200'].values, unit=(u.deg, u.deg))

#assume standard cosmology for distance estimates
Expand Down

0 comments on commit 119cbe7

Please sign in to comment.