From 05decf38165d4fdc5174ec18870eef0787b30e6c Mon Sep 17 00:00:00 2001 From: Jan David Mol <mol@astron.nl> Date: Fri, 8 Oct 2021 04:49:31 +0000 Subject: [PATCH] L2SS-391: Remove superfluous comments, remove version_R in preparation of MR for L2SS-412 --- devices/devices/boot.py | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/devices/devices/boot.py b/devices/devices/boot.py index 51a32871b..fb8a6947c 100644 --- a/devices/devices/boot.py +++ b/devices/devices/boot.py @@ -184,19 +184,6 @@ class DevicesInitialiser(Thread): @device_logging_to_python() class Boot(hardware_device): - """ - - **Properties:** - - - Device Property - OPC_Server_Name - - Type:'DevString' - OPC_Server_Port - - Type:'DevULong' - OPC_Time_Out - - Type:'DevDouble' - """ - # ----------------- # Device Properties # ----------------- @@ -233,7 +220,6 @@ class Boot(hardware_device): # ---------- # Attributes # ---------- - version_R = attribute(dtype=str, access=AttrWriteType.READ, fget=lambda self: get_version()) initialising_station_R = attribute(dtype=numpy.bool_, access=AttrWriteType.READ, fget=lambda self: self.initialiser.is_running()) initialisation_progress_R = attribute(dtype=numpy.int, access=AttrWriteType.READ, fget=lambda self: numpy.int(self.initialiser.progress)) initialisation_status_R = attribute(dtype=str, access=AttrWriteType.READ, fget=lambda self: self.initialiser.status) -- GitLab