Skip to content

Commit 1b610ed

Browse files
restyled-commitstcarmelveilleux
authored andcommitted
Restyled by isort
1 parent 1a30459 commit 1b610ed

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

src/python_testing/TC_SWTCH.py

+6-5
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,19 @@
2626
# test-runner-run/run1/script-args: --storage-path admin_storage.json --commissioning-method on-network --discriminator 1234 --passcode 20202021 --endpoint 3 --trace-to json:${TRACE_TEST_JSON}.json --trace-to perfetto:${TRACE_TEST_PERFETTO}.perfetto
2727
# === END CI TEST ARGUMENTS ===
2828

29-
import logging
3029
import json
30+
import logging
3131
import queue
3232
import time
33-
3433
from typing import Any
35-
from mobly import asserts
34+
3635
import chip.clusters as Clusters
3736
from chip.clusters import ClusterObjects as ClusterObjects
38-
from chip.clusters.Attribute import TypedAttributePath, EventReadResult
37+
from chip.clusters.Attribute import EventReadResult, TypedAttributePath
3938
from chip.clusters.Types import NullValue
40-
from matter_testing_support import EventChangeCallback, ClusterAttributeChangeAccumulator, AttributeValue, MatterBaseTest, TestStep, async_test_body, default_matter_test_main
39+
from matter_testing_support import (AttributeValue, ClusterAttributeChangeAccumulator, EventChangeCallback, MatterBaseTest,
40+
TestStep, async_test_body, default_matter_test_main)
41+
from mobly import asserts
4142

4243
logger = logging.getLogger(__name__)
4344

src/python_testing/matter_testing_support.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
from dataclasses import dataclass, field
3535
from datetime import datetime, timedelta, timezone
3636
from enum import Enum
37-
from typing import List, Optional, Tuple, Any
37+
from typing import Any, List, Optional, Tuple
3838

3939
from chip.tlv import float32, uint
4040

0 commit comments

Comments
 (0)