From 2b3759a757f401cd3f53d918fb6baea15b2e554e Mon Sep 17 00:00:00 2001 From: Joseph Parsons Date: Wed, 3 Jul 2024 13:33:21 -0600 Subject: [PATCH] flake8 --- python/lsst/ts/xml/enums/MTReflector.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/python/lsst/ts/xml/enums/MTReflector.py b/python/lsst/ts/xml/enums/MTReflector.py index 915b45c2d..84ef19640 100644 --- a/python/lsst/ts/xml/enums/MTReflector.py +++ b/python/lsst/ts/xml/enums/MTReflector.py @@ -6,20 +6,20 @@ class MTReflectorStatus(enum.IntEnum): """An enumeration class for handling the MTReflectorStatus's substates. These enumerations listed here correspond to the ones found in the - detailedState enum located in ts_xml under the MTReflectorStatus folder within - the MTReflectorStatus_Events.xml. + detailedState enum located in ts_xml under the MTReflectorStatus + folder within the MTReflectorStatus_Events.xml. Attributes ---------- CONNECTED: `int` - Corresponds to the state when labjack/network controller is connected + Corresponds to the state when labjack controller is connected DISCONNECTED: `int` - Corresponds to the state when labjack/network controller is disconnected + Corresponds to the state when labjack controller is disconnected UNKNOWN : `int` - Corresponds to the state when labjack/network controller state is not known + Corresponds to the state when labjack controller state is not known CONNECTION_ERROR : `int` - Corresponds to the state when labjack/network controller has errored + Corresponds to the state when labjack controller has errored """