Skip to content

Commit

Permalink
..
Browse files Browse the repository at this point in the history
  • Loading branch information
stvoutsin committed Oct 8, 2024
1 parent 26e90f9 commit 97e5345
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sia/models/sia_query_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ def to_butler_parameters(self) -> SIAv2Parameters:
band=self.band or (),
exptime=self.exptime or (),
calib=self._convert_calib(calib=self.calib),
maxrec=self.maxrec,
maxrec=str(self.maxrec) if self.maxrec is not None else None,
)

@staticmethod
Expand Down

0 comments on commit 97e5345

Please sign in to comment.