diff --git a/src/python_testing/TC_ACE_1_3.py b/src/python_testing/TC_ACE_1_3.py index 000a844504f420..dd3639d7c0b476 100644 --- a/src/python_testing/TC_ACE_1_3.py +++ b/src/python_testing/TC_ACE_1_3.py @@ -15,10 +15,11 @@ # limitations under the License. # -from matter_testing_support import MatterBaseTest, default_matter_test_main, async_test_body -from chip.interaction_model import Status, InteractionModelError -import chip.clusters as Clusters import logging + +import chip.clusters as Clusters +from chip.interaction_model import InteractionModelError, Status +from matter_testing_support import MatterBaseTest, async_test_body, default_matter_test_main from mobly import asserts diff --git a/src/python_testing/matter_testing_support.py b/src/python_testing/matter_testing_support.py index c8a7c06fa3f407..89e52736e86556 100644 --- a/src/python_testing/matter_testing_support.py +++ b/src/python_testing/matter_testing_support.py @@ -41,9 +41,8 @@ import chip.clusters as Clusters import chip.logging import chip.native - from chip.ChipStack import * -from chip.interaction_model import Status, InteractionModelError +from chip.interaction_model import InteractionModelError, Status from chip.storage import PersistentStorage from chip.utils import CommissioningBuildingBlocks from mobly import asserts, base_test, logger, signals, utils