From c72cca7042d29d28bf6d1f15e74f1e55e63506d0 Mon Sep 17 00:00:00 2001 From: gmegh Date: Thu, 19 Oct 2023 10:20:16 +0900 Subject: [PATCH 1/2] Exporting missing enums classes --- python/lsst/ts/observatory/control/utils/enums.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/lsst/ts/observatory/control/utils/enums.py b/python/lsst/ts/observatory/control/utils/enums.py index afffe88a..e1ad00f5 100644 --- a/python/lsst/ts/observatory/control/utils/enums.py +++ b/python/lsst/ts/observatory/control/utils/enums.py @@ -18,7 +18,7 @@ # # You should have received a copy of the GNU General Public License -__all__ = ["RotType", "InstrumentFocus"] +__all__ = ["RotType", "InstrumentFocus", "ClosedLoopMode", "DOFName"] import enum From 53fcd060bc5d40279f865ddd7000c5e17dc27750 Mon Sep 17 00:00:00 2001 From: gmegh Date: Fri, 20 Oct 2023 07:47:51 +0900 Subject: [PATCH 2/2] Update version history --- doc/version_history.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/version_history.rst b/doc/version_history.rst index d85026d7..5e1c95c5 100644 --- a/doc/version_history.rst +++ b/doc/version_history.rst @@ -14,6 +14,7 @@ v0.31.0 * Add support for mtrotator cmd_stop and evt_controllerState in ``mock/mtcs_async_mock.py``. * In ``constants/latiss_constants.py``, update blue300lppm_qn1, holo4_003, and holo4_001 sweet spots. * Add new option to ``MTCS.move_rotator`` to allow the function to return before the rotator is in position. +* Export enum classes ``DOFName`` and ``ClosedLoopMode`` in ``enums.py``. v0.30.5 -------