From e1bfb6921e853b9777157a83be8f1f9df2dcecb3 Mon Sep 17 00:00:00 2001 From: Mathieu Kardous Date: Tue, 22 Aug 2023 19:28:15 -0400 Subject: [PATCH] remove unused code --- src/python_testing/TC_ICDM_2_1.py | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/src/python_testing/TC_ICDM_2_1.py b/src/python_testing/TC_ICDM_2_1.py index 897c13acfba792..2962caf97f1b9e 100644 --- a/src/python_testing/TC_ICDM_2_1.py +++ b/src/python_testing/TC_ICDM_2_1.py @@ -14,12 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # - -import ipaddress -from datetime import timedelta - import chip.clusters as Clusters -from chip.clusters.Types import NullValue from matter_testing_support import MatterBaseTest, async_test_body, default_matter_test_main from mobly import asserts @@ -78,15 +73,15 @@ async def test_TC_ICDM_2_1(self): if (self.check_pics("ICDM.S.A0003")): self.print_step(2, "Read RegisteredClients Attribute") - registeredClients = await self.read_icdm_attribute_expect_success(endpoint=endpoint, - attribute=attributes.RegisteredClients) + await self.read_icdm_attribute_expect_success(endpoint=endpoint, + attribute=attributes.RegisteredClients) # ICDCounter attribute test if (self.check_pics("ICDM.S.A0003")): self.print_step(2, "Read ICDCounter Attribute") - icdCounter = await self.read_icdm_attribute_expect_success(endpoint=endpoint, - attribute=attributes.ICDCounter) + await self.read_icdm_attribute_expect_success(endpoint=endpoint, + attribute=attributes.ICDCounter) # ClientsSupportedPerFabric attribute test if (self.check_pics("ICDM.S.A0003")):