Skip to content

Commit

Permalink
fixing typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ajmejia committed Sep 10, 2024
1 parent de95054 commit 2372d88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lvmdrp/core/rss.py
Original file line number Diff line number Diff line change
Expand Up @@ -3439,7 +3439,7 @@ def get_helio_rv(self, apply_hrv_corr=False):
continue

std_obstime = Time(self._header[f"STD{istd}T0"])
std_ra, std_dec = self._header.get(f"STD{istd}RA", 0.0), self._header(f"STD{istd}DE", 0.0)
std_ra, std_dec = self._header.get(f"STD{istd}RA", 0.0), self._header.get(f"STD{istd}DE", 0.0)
if std_ra == 0 or std_dec == 0:
self._header[f"STD{istd}HRV"] = (0.0, f"Standard {istd} heliocentric vel. corr. [km/s]")
continue
Expand Down

0 comments on commit 2372d88

Please sign in to comment.