Skip to content

Commit

Permalink
fix quotes in docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertLuptonTheGood committed Jan 31, 2024
1 parent bdc861c commit 0fec94e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/lsst/obs/lsst/translators/lsst.py
Original file line number Diff line number Diff line change
Expand Up @@ -451,8 +451,8 @@ def unpack_exposure_id(exposure_id):
seqnum : `int`
Sequence number.
controller : `str`
Controller code. Will be `O` (but should be ignored) for IDs
produced by calling `compute_exposure_id` with ``controller=None`.
Controller code. Will be ``O`` (but should be ignored) for IDs
produced by calling `compute_exposure_id` with ``controller=None``.
"""
dayobs, seqnum = divmod(exposure_id, 10**_SEQNUM_MAXDIGITS)
controller_index = dayobs // _CONTROLLER_INCREMENT - 2
Expand Down

0 comments on commit 0fec94e

Please sign in to comment.