Skip to content

Commit eb4d3e5

Browse files
committed
Linted python script
1 parent a870594 commit eb4d3e5

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/python_testing/TC_PWRTL_2_1.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
from matter_testing_support import MatterBaseTest, async_test_body, default_matter_test_main
2323
from mobly import asserts
2424

25+
2526
class TC_PWRTL_2_1(MatterBaseTest):
2627

2728
def pics_TC_PWRTL_2_1(self) -> list[str]:
@@ -49,7 +50,7 @@ async def test_TC_PWRTL_2_1(self):
4950
logging.info("AvailableEndpoints: %s" % (available_endpoints))
5051

5152
asserts.assert_less_equal(len(available_endpoints), 21,
52-
"AvailableEndpoints length %d must be less than 21!" % len(available_endpoints))
53+
"AvailableEndpoints length %d must be less than 21!" % len(available_endpoints))
5354

5455
if not self.check_pics("PWRTL.S.A0001"):
5556
logging.info("Test skipped because PICS PWRTL.S.A0001 is not set")
@@ -61,8 +62,6 @@ async def test_TC_PWRTL_2_1(self):
6162

6263
if available_endpoints == NullValue:
6364
asserts.assert_true(active_endpoints == NullValue, "ActiveEndpoints should be null when AvailableEndpoints is null: %s" % active_endpoints)
64-
65-
6665

6766
if __name__ == "__main__":
6867
default_matter_test_main()

0 commit comments

Comments
 (0)