From cba575c18189d740bc110c18796c2c33d38a0637 Mon Sep 17 00:00:00 2001 From: raul-marquez-csa Date: Wed, 22 May 2024 10:40:19 -0700 Subject: [PATCH] Lint --- src/python_testing/matter_testing_support.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/python_testing/matter_testing_support.py b/src/python_testing/matter_testing_support.py index 6a6684499e9f1a..5416204a25afeb 100644 --- a/src/python_testing/matter_testing_support.py +++ b/src/python_testing/matter_testing_support.py @@ -310,6 +310,7 @@ def wait_for_event_report(self, expected_event: ClusterObjects.ClusterEvent, tim asserts.assert_equal(res.Header.EventId, expected_event.event_id, "Expected event ID not found in event report") return res.Data + class AttributeChangeCallback: def __init__(self, expected_attribute: ClusterObjects.ClusterAttributeDescriptor): self._output = queue.Queue() @@ -340,6 +341,7 @@ def wait_for_report(self): except KeyError: asserts.fail("[AttributeChangeCallback] Attribute {expected_attribute} not found in returned report") + class InternalTestRunnerHooks(TestRunnerHooks): def start(self, count: int):