From b5b7bb62a10b4ae862c66ac74adcd688e8c6a63e Mon Sep 17 00:00:00 2001 From: thijs snijder <snijder@astron.nl> Date: Wed, 7 Apr 2021 18:38:13 +0200 Subject: [PATCH] fixed 'illegal state transition' bug and off->initialise state bug --- devices/clients/test_client.py | 7 +++++++ devices/src/attribute_wrapper.py | 11 +++++++++++ 2 files changed, 18 insertions(+) diff --git a/devices/clients/test_client.py b/devices/clients/test_client.py index d7e1300c7..f3663be5a 100644 --- a/devices/clients/test_client.py +++ b/devices/clients/test_client.py @@ -1,6 +1,9 @@ from src.comms_client import * +<<<<<<< HEAD import os +======= +>>>>>>> 99e3d08... fixed 'illegal state transition' bug and off->initialise state bug # <class 'numpy.bool_'> @@ -29,7 +32,11 @@ class example_client(CommClient): """ this function provides a location for the code neccecary to connect to the client """ +<<<<<<< HEAD self.streams.debug_stream(os.path.dirname(os.path.abspath(__file__))) +======= + +>>>>>>> 99e3d08... fixed 'illegal state transition' bug and off->initialise state bug self.streams.debug_stream("the example client doesn't actually connect to anything silly") self.connected = True # set connected to true diff --git a/devices/src/attribute_wrapper.py b/devices/src/attribute_wrapper.py index 03bd9d5e5..8b62378b2 100644 --- a/devices/src/attribute_wrapper.py +++ b/devices/src/attribute_wrapper.py @@ -11,6 +11,7 @@ logger = logging.getLogger() class attribute_wrapper(attribute): """ +<<<<<<< HEAD Wraps all the attributes in a wrapper class to manage most of the redundant code behind the scenes """ @@ -24,6 +25,16 @@ class attribute_wrapper(attribute): dims: dimensions of the init_value: value """ +======= + Wraps all the attributes in a wrapper class to manage most of the redundant code behind the scenes + """ + + def __init__(self, comms_annotation=None, datatype=None, dims=(1,), access=AttrWriteType.READ, init_value=None, **kwargs): + """ + wraps around the tango Attribute class. Provides an easier interface for 1d or 2d arrays. Also provides a way to abstract + managing the communications interface. + """ +>>>>>>> 99e3d08... fixed 'illegal state transition' bug and off->initialise state bug # ensure the type is a numpy array if "numpy" not in str(datatype) and datatype != str: -- GitLab