Skip to content

Commit

Permalink
Add overwatcher to list of actors
Browse files Browse the repository at this point in the history
  • Loading branch information
albireox committed Oct 26, 2024
1 parent 30e3019 commit 1d362f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions src/lvmapi/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ database:

actors:
list:
- lvm.overwatcher
- lvm.sci.agcam
- lvm.spec.agcam
- lvm.skye.agcam
Expand All @@ -42,6 +43,7 @@ actors:
- lvm.skye.guider
- lvm.skyw.guider
actor_to_deployment:
lvm.overwatcher: overwatcher
lvm.sci.agcam: lvmagcam
lvm.spec.agcam: lvmagcam
lvm.skye.agcam: lvmagcam
Expand Down
4 changes: 2 additions & 2 deletions src/lvmapi/tools/logs.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,15 +75,15 @@ def get_exposures(mjd: int):
@overload
def get_exposure_data(
mjd: int,
as_dataframe: Literal[False],
as_dataframe: Literal[False] = False,
compact_lamps: bool = False,
) -> dict[int, ExposureDataDict]: ...


@overload
def get_exposure_data(
mjd: int,
as_dataframe: Literal[True],
as_dataframe: Literal[True] = True,
compact_lamps: bool = False,
) -> polars.DataFrame: ...

Expand Down

0 comments on commit 1d362f0

Please sign in to comment.