From 31623e8fb9be9e7728497d9321f0de23aa825f61 Mon Sep 17 00:00:00 2001 From: Thomas Lea Date: Thu, 29 Aug 2024 13:31:24 -0500 Subject: [PATCH] fixed linter issue --- src/python_testing/TC_ACL_2_11.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/python_testing/TC_ACL_2_11.py b/src/python_testing/TC_ACL_2_11.py index 8d3624841d05cb..91df448217e2f9 100644 --- a/src/python_testing/TC_ACL_2_11.py +++ b/src/python_testing/TC_ACL_2_11.py @@ -160,12 +160,12 @@ async def test_TC_ACL_2_11(self): server_list = ret[endpoint][Clusters.Descriptor][Clusters.Descriptor.Attributes.ServerList] for server in server_list: cluster = Clusters.ClusterObjects.ALL_CLUSTERS[server] - attribute_data = await dev_ctrl.ReadAttribute(dut_node_id, [endpoint, - cluster.Attributes.GeneratedCommandList, - cluster.Attributes.AcceptedCommandList, - cluster.Attributes.AttributeList, - cluster.Attributes.FeatureMap, - cluster.Attributes.ClusterRevision]) + await dev_ctrl.ReadAttribute(dut_node_id, [endpoint, + cluster.Attributes.GeneratedCommandList, + cluster.Attributes.AcceptedCommandList, + cluster.Attributes.AttributeList, + cluster.Attributes.FeatureMap, + cluster.Attributes.ClusterRevision]) self.step(6) response = await self.send_single_cmd(cmd=Clusters.AccessControl.Commands.ReviewFabricRestrictions([care_struct]), endpoint=0)