From 6a40a6ca0b983e6d44bb71b2bda6c56dbab5f821 Mon Sep 17 00:00:00 2001 From: toor <elisabetta.giani@inaf.it> Date: Mon, 15 Feb 2021 18:51:03 +0100 Subject: [PATCH] CT-215: fix lint warnings. --- csp-lmc-mid/csp_lmc_mid/MidCspSubarrayBase.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/csp-lmc-mid/csp_lmc_mid/MidCspSubarrayBase.py b/csp-lmc-mid/csp_lmc_mid/MidCspSubarrayBase.py index a1b0b39..30cc168 100644 --- a/csp-lmc-mid/csp_lmc_mid/MidCspSubarrayBase.py +++ b/csp-lmc-mid/csp_lmc_mid/MidCspSubarrayBase.py @@ -859,7 +859,7 @@ class MidCspSubarrayBase(CspSubarray): def read_assignedVccState(self): # PROTECTED REGION ID(MidCspSubarrayBase.assignedVccState_read) ENABLED START # """Return the assignedVccState attribute.""" - return (Tango.DevState.UNKNOWN,) + return (tango.DevState.UNKNOWN,) def read_assignedVccHealthState(self): # PROTECTED REGION ID(MidCspSubarrayBase.assignedVccHealthState_read) ENABLED START # """Return the assignedVccHealthState attribute.""" @@ -887,7 +887,7 @@ class MidCspSubarrayBase(CspSubarray): def read_assignedFspState(self): # PROTECTED REGION ID(MidCspSubarrayBase.assignedFspState_read) ENABLED START # """Return the assignedFspState attribute.""" - return (Tango.DevState.UNKNOWN,) + return (tango.DevState.UNKNOWN,) # PROTECTED REGION END # // MidCspSubarrayBase.assignedFspState_read def read_assignedFspHealthState(self): -- GitLab