Skip to content

Commit 740e75b

Browse files
committed
linter
1 parent 6ec2d85 commit 740e75b

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

src/python_testing/TC_CCTRL_2_2.py

+2-9
Original file line numberDiff line numberDiff line change
@@ -32,19 +32,12 @@
3232

3333
import chip.clusters as Clusters
3434
import chip.exceptions
35+
from chip import ChipDeviceCtrl
3536
from chip.interaction_model import InteractionModelError, Status
3637
from matter_testing_support import (MatterBaseTest, TestStep, async_test_body, default_matter_test_main, has_cluster,
3738
per_endpoint_test)
3839
from mobly import asserts
3940

40-
# isort: off
41-
42-
from chip import ChipDeviceCtrl # Needed before chip.FabricAdmin
43-
import chip.CertificateAuthority
44-
from chip.ChipDeviceCtrl import CommissioningParameters
45-
46-
# isort: on
47-
4841

4942
class TC_CCTRL_2_2(MatterBaseTest):
5043

@@ -83,7 +76,7 @@ async def setup_class(self):
8376
def teardown_class(self):
8477
logging.warning("Stopping app with SIGTERM")
8578
self.app_process.send_signal(signal.SIGTERM.value)
86-
test_app_exit_code = self.app_process.wait()
79+
self.app_process.wait()
8780
# TODO: Use timeout, if term doesn't work, try SIGINT
8881

8982
os.remove(self.kvs)

0 commit comments

Comments
 (0)