diff --git a/src/python_testing/TC_ICDM_2_1.py b/src/python_testing/TC_ICDM_2_1.py index 897c13acfba792..6fdae1758ce1e6 100644 --- a/src/python_testing/TC_ICDM_2_1.py +++ b/src/python_testing/TC_ICDM_2_1.py @@ -14,10 +14,6 @@ # 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 @@ -78,15 +74,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")):