Skip to content

Commit

Permalink
Fix python linter
Browse files Browse the repository at this point in the history
  • Loading branch information
mkardous-silabs committed May 13, 2024
1 parent 97cdde2 commit 59303b9
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/python_testing/TC_ICDM_2_1.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,8 @@
#
import logging
import re
from enum import IntEnum, IntFlag, auto

import chip.clusters as Clusters
from chip.clusters import Attribute
from matter_testing_support import MatterBaseTest, TestStep, async_test_body, default_matter_test_main
from mobly import asserts

Expand Down Expand Up @@ -230,7 +228,7 @@ async def test_TC_ICDM_2_1(self):
'utf-8')
except Exception:
asserts.assert_true(
false, "UserActiveModeTriggerInstruction is not encoded in the correct format (utf-8).")
False, "UserActiveModeTriggerInstruction is not encoded in the correct format (utf-8).")

# Verify byte length of the UserActiveModeTirggerInstruction
asserts.assert_less_equal(
Expand Down

0 comments on commit 59303b9

Please sign in to comment.