From cb348035b898a192862314e22cfb469a9f31b4c7 Mon Sep 17 00:00:00 2001 From: lukken <lukken@astron.nl> Date: Tue, 20 Sep 2022 10:52:33 +0000 Subject: [PATCH] L2SS-877: Siwtch type hint to numpy.ndarray --- tangostationcontrol/tangostationcontrol/devices/lofar_device.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tangostationcontrol/tangostationcontrol/devices/lofar_device.py b/tangostationcontrol/tangostationcontrol/devices/lofar_device.py index 0e9b99ef3..068c9cee6 100644 --- a/tangostationcontrol/tangostationcontrol/devices/lofar_device.py +++ b/tangostationcontrol/tangostationcontrol/devices/lofar_device.py @@ -106,7 +106,7 @@ class lofar_device(Device, metaclass=DeviceMeta): # TODO(Corne): Actually implement locking in L2SS-940 def atomic_read_modify_write_attribute( - self, values: List[any], proxy: DeviceProxy, attribute: str, sparse=None + self, values: numpy.ndarray, proxy: DeviceProxy, attribute: str, sparse=None ): """Atomatically read-modify-write the attribute on the given proxy""" -- GitLab