Skip to content

Commit

Permalink
Restyled by isort
Browse files Browse the repository at this point in the history
  • Loading branch information
restyled-commits authored and beckerzito committed Feb 13, 2024
1 parent 2bcf892 commit bac8f4e
Show file tree
Hide file tree
Showing 13 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion src/python_testing/TC_OPSTATE_1_1.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


import chip.clusters as Clusters
from matter_testing_support import TestStep, MatterBaseTest, async_test_body, default_matter_test_main
from matter_testing_support import MatterBaseTest, TestStep, async_test_body, default_matter_test_main
from TC_OpstateCommon import TC_OPSTATE_BASE, TestInfo


Expand Down
2 changes: 1 addition & 1 deletion src/python_testing/TC_OPSTATE_2_1.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


import chip.clusters as Clusters
from matter_testing_support import TestStep, MatterBaseTest, async_test_body, default_matter_test_main
from matter_testing_support import MatterBaseTest, TestStep, async_test_body, default_matter_test_main
from TC_OpstateCommon import TC_OPSTATE_BASE, TestInfo


Expand Down
2 changes: 1 addition & 1 deletion src/python_testing/TC_OPSTATE_2_2.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


import chip.clusters as Clusters
from matter_testing_support import TestStep, MatterBaseTest, async_test_body, default_matter_test_main
from matter_testing_support import MatterBaseTest, TestStep, async_test_body, default_matter_test_main
from TC_OpstateCommon import TC_OPSTATE_BASE, TestInfo


Expand Down
2 changes: 1 addition & 1 deletion src/python_testing/TC_OPSTATE_2_3.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


import chip.clusters as Clusters
from matter_testing_support import TestStep, MatterBaseTest, async_test_body, default_matter_test_main
from matter_testing_support import MatterBaseTest, TestStep, async_test_body, default_matter_test_main
from TC_OpstateCommon import TC_OPSTATE_BASE, TestInfo


Expand Down
2 changes: 1 addition & 1 deletion src/python_testing/TC_OPSTATE_2_4.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


import chip.clusters as Clusters
from matter_testing_support import TestStep, MatterBaseTest, async_test_body, default_matter_test_main
from matter_testing_support import MatterBaseTest, TestStep, async_test_body, default_matter_test_main
from TC_OpstateCommon import TC_OPSTATE_BASE, TestInfo


Expand Down
2 changes: 1 addition & 1 deletion src/python_testing/TC_OPSTATE_2_5.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


import chip.clusters as Clusters
from matter_testing_support import TestStep, MatterBaseTest, async_test_body, default_matter_test_main
from matter_testing_support import MatterBaseTest, TestStep, async_test_body, default_matter_test_main
from TC_OpstateCommon import TC_OPSTATE_BASE, TestInfo


Expand Down
2 changes: 1 addition & 1 deletion src/python_testing/TC_OVENOPSTATE_1_1.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


import chip.clusters as Clusters
from matter_testing_support import TestStep, MatterBaseTest, async_test_body, default_matter_test_main
from matter_testing_support import MatterBaseTest, TestStep, async_test_body, default_matter_test_main
from TC_OpstateCommon import TC_OPSTATE_BASE, TestInfo


Expand Down
2 changes: 1 addition & 1 deletion src/python_testing/TC_OVENOPSTATE_2_1.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


import chip.clusters as Clusters
from matter_testing_support import TestStep, MatterBaseTest, async_test_body, default_matter_test_main
from matter_testing_support import MatterBaseTest, TestStep, async_test_body, default_matter_test_main
from TC_OpstateCommon import TC_OPSTATE_BASE, TestInfo


Expand Down
2 changes: 1 addition & 1 deletion src/python_testing/TC_OVENOPSTATE_2_2.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


import chip.clusters as Clusters
from matter_testing_support import TestStep, MatterBaseTest, async_test_body, default_matter_test_main
from matter_testing_support import MatterBaseTest, TestStep, async_test_body, default_matter_test_main
from TC_OpstateCommon import TC_OPSTATE_BASE, TestInfo


Expand Down
2 changes: 1 addition & 1 deletion src/python_testing/TC_OVENOPSTATE_2_3.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


import chip.clusters as Clusters
from matter_testing_support import TestStep, MatterBaseTest, async_test_body, default_matter_test_main
from matter_testing_support import MatterBaseTest, TestStep, async_test_body, default_matter_test_main
from TC_OpstateCommon import TC_OPSTATE_BASE, TestInfo


Expand Down
2 changes: 1 addition & 1 deletion src/python_testing/TC_OVENOPSTATE_2_4.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


import chip.clusters as Clusters
from matter_testing_support import TestStep, MatterBaseTest, async_test_body, default_matter_test_main
from matter_testing_support import MatterBaseTest, TestStep, async_test_body, default_matter_test_main
from TC_OpstateCommon import TC_OPSTATE_BASE, TestInfo


Expand Down
2 changes: 1 addition & 1 deletion src/python_testing/TC_OVENOPSTATE_2_5.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


import chip.clusters as Clusters
from matter_testing_support import TestStep, MatterBaseTest, async_test_body, default_matter_test_main
from matter_testing_support import MatterBaseTest, TestStep, async_test_body, default_matter_test_main
from TC_OpstateCommon import TC_OPSTATE_BASE, TestInfo


Expand Down
8 changes: 4 additions & 4 deletions src/python_testing/TC_OpstateCommon.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,18 @@
#

import logging
import time
import queue
import time
from dataclasses import dataclass

import chip.clusters as Clusters
import psutil
from chip.clusters import ClusterObjects as ClusterObjects
from chip.clusters.Attribute import EventReadResult, SubscriptionTransaction
from chip.clusters.Types import NullValue
from chip.interaction_model import InteractionModelError, Status
from matter_testing_support import EventChangeCallback, TestStep
from mobly import asserts
from dataclasses import dataclass
from matter_testing_support import TestStep, EventChangeCallback
import psutil


def get_pid(name):
Expand Down

0 comments on commit bac8f4e

Please sign in to comment.