From b264cfa26d9c0a3a28b36541a711baf6069165ae Mon Sep 17 00:00:00 2001 From: Thomas Juerges <4-jurges@users.noreply.git.astron.nl> Date: Tue, 2 Mar 2021 16:01:09 +0100 Subject: [PATCH] Remove accidentally leftover numpy cruft --- PCC/PCC/PCC.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PCC/PCC/PCC.py b/PCC/PCC/PCC.py index 68288f094..ea7eb82a9 100644 --- a/PCC/PCC/PCC.py +++ b/PCC/PCC/PCC.py @@ -495,7 +495,7 @@ class PCC(Device): @fault_on_error def read_RCU_state_R(self): """Return the RCU_state_R attribute.""" - self._RCU_state_R = numpy.array(self.attribute_mapping["RCU_state_R"].get_value() + self._RCU_state_R = self.attribute_mapping["RCU_state_R"].get_value() return self._RCU_state_R @only_when_on -- GitLab