Skip to content

Commit 52bdb70

Browse files
committedFeb 6, 2024
Fixed trailing whitepace
1 parent 9358584 commit 52bdb70

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎src/python_testing/matter_testing_support.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ async def start(self, dev_ctrl, node_id: int, endpoint: int):
290290
self._subscription.SetEventUpdateCallback(self.__call__)
291291

292292
def __call__(self, res: EventReadResult, transaction: SubscriptionTransaction):
293-
"""This is the subscription callback when an event is received.
293+
"""This is the subscription callback when an event is received.
294294
It checks the event is from the expected_cluster and then posts it into the queue for later processing."""
295295
if res.Status == Status.Success and res.Header.ClusterId == self._expected_cluster.id:
296296
logging.info(
@@ -887,8 +887,8 @@ async def send_single_cmd(
887887
async def send_test_event_triggers(self, eventTrigger: int, enableKey: bytes = None):
888888
"""This helper function sends a test event trigger to the General Diagnostics cluster on endpoint 0
889889
890-
The enableKey can be passed into the function, or omitted which will then use the
891-
one provided to the script via --hex-arg enableKey:<HEX VALUE>
890+
The enableKey can be passed into the function, or omitted which will then
891+
use the one provided to the script via --hex-arg enableKey:<HEX VALUE>
892892
if not it defaults to 0x000102030405060708090a0b0c0d0e0f
893893
"""
894894
# get the test event enable key or assume the default

0 commit comments

Comments
 (0)