Skip to content

Commit

Permalink
Fix DF comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
albireox committed Aug 16, 2023
1 parent b32a182 commit 83ed9a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gort/exposure.py
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ async def register_observation(
async def _update_header(self, header: dict[str, Any]):
"""Updates the exposure header with pointing and guiding information."""

if self.guider_data:
if self.guider_data is not None:
for tel in ["sci", "spec", "skye", "skyw"]:
try:
tel_data = self.guider_data.loc[self.guider_data.telescope == tel]
Expand Down

0 comments on commit 83ed9a1

Please sign in to comment.