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 cecille committed Jan 13, 2023
1 parent e96d137 commit 723575c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
9 changes: 5 additions & 4 deletions src/python_testing/TC_ACE_1_4.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,14 @@
# 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 logging
import sys

import chip.clusters as Clusters
import chip.clusters.Objects
import logging
from chip.interaction_model import InteractionModelError, Status
from matter_testing_support import MatterBaseTest, async_test_body, default_matter_test_main
from mobly import asserts
import sys

# This test requires several addition command line arguments
# run with
Expand Down
4 changes: 1 addition & 3 deletions src/python_testing/matter_testing_support.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
from dataclasses import dataclass, field
from typing import List, Optional, Tuple


# isort: off

from chip import ChipDeviceCtrl # Needed before chip.FabricAdmin
Expand All @@ -39,15 +38,14 @@

# isort: on
import chip.clusters as Clusters
from chip.interaction_model import Status, InteractionModelError
import chip.logging
import chip.native
from chip.ChipStack import *
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
from mobly.config_parser import ENV_MOBLY_LOGPATH, TestRunConfig

from mobly.test_runner import TestRunner

# TODO: Add utility to commission a device if needed
Expand Down

0 comments on commit 723575c

Please sign in to comment.