Skip to content

Commit

Permalink
Merge pull request #14 from lsst-dm/tickets/DM-44099f
Browse files Browse the repository at this point in the history
DM-44099: Fix column names.
  • Loading branch information
ktlim committed May 16, 2024
2 parents 65a79f9 + 3e0d820 commit 0f671dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/lsst/consdb/hinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def logical_or(*bools: int | str | None) -> bool:
"seq_num": "SEQNUM",
"band": "FILTBAND",
"s_ra": "RA",
"s_decl": "DEC",
"s_dec": "DEC",
"sky_rotation": "ROTPA",
"azimuth_start": "AZSTART",
"azimuth_end": "AZEND",
Expand All @@ -74,7 +74,7 @@ def logical_or(*bools: int | str | None) -> bool:
"obs_start": (tai_convert, "DATE-BEG"),
"obs_start_mjd": "MJD-BEG",
"obs_end": (tai_convert, "DATE-END"),
"obs_endmjd": "MJD-END",
"obs_end_mjd": "MJD-END",
"exp_time": "EXPTIME",
"shut_time": "SHUTTIME",
"dark_time": "DARKTIME",
Expand Down

0 comments on commit 0f671dd

Please sign in to comment.