Skip to content

Commit

Permalink
Tweak to TopoObs clock_corrections()
Browse files Browse the repository at this point in the history
  • Loading branch information
paulray committed May 14, 2024
1 parent 627d8db commit 5efcc37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pint/observatory/topo_obs.py
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ def clock_corrections(
msg = f"No clock corrections found for observatory {self.name} taken from file {self.clock_files}"
if limits == "warn":
log.warning(msg)
corr = np.zeros_like(t) * u.us
corr += np.zeros_like(t) * u.us
elif limits == "error":
raise NoClockCorrections(msg)
else:
Expand Down

0 comments on commit 5efcc37

Please sign in to comment.