Skip to content

Commit

Permalink
float int64
Browse files Browse the repository at this point in the history
  • Loading branch information
albireox committed Aug 16, 2023
1 parent 83ed9a1 commit f512d31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gort/exposure.py
Original file line number Diff line number Diff line change
Expand Up @@ -420,8 +420,8 @@ async def _update_header(self, header: dict[str, Any]):
frame0 = None
framen = None
else:
frame0 = tel_data.frameno.min()
framen = tel_data.frameno.max()
frame0 = float(tel_data.frameno.min())
framen = float(tel_data.frameno.max())

header.update(
{
Expand Down

0 comments on commit f512d31

Please sign in to comment.