Skip to content

Commit e52b7da

Browse files
restyled-commitsPeterC1965
authored andcommitted
Restyled by autopep8
1 parent b9a7143 commit e52b7da

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/python_testing/TC_DEM_1_1.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ async def test_TC_DEM_1_1(self):
192192
def check_attribute_valid_and_remove_from_list(self, attribute_id, feature_map, attribute_list, required_features):
193193
if feature_map & required_features:
194194
asserts.assert_true(attribute_id in attribute_list,
195-
f"Expected to find attribute {attribute_id} in attribute_list {attribute_list} given feature_map 0x{feature_map:x}")
195+
f"Expected to find attribute {attribute_id} in attribute_list {attribute_list} given feature_map 0x{feature_map:x}")
196196
attribute_list.remove(attribute_id)
197197

198198
else:
@@ -208,6 +208,8 @@ def check_expected_commands_in_list(self, expected_commands, feature_map, accept
208208
else:
209209
for command in expected_commands:
210210
asserts.assert_false(command in accepted_command_list,
211-
f"Did not expect command {command} to be in accepted_command_list {accepted_command_list} given required_features {required_features} in feature_map 0x{feature_map:x}")
211+
f"Did not expect command {command} to be in accepted_command_list {accepted_command_list} given required_features {required_features} in feature_map 0x{feature_map:x}")
212+
213+
212214
if __name__ == "__main__":
213215
default_matter_test_main()

0 commit comments

Comments
 (0)