diff --git a/src/python_testing/TC_MWOCTRL_2_4.py b/src/python_testing/TC_MWOCTRL_2_4.py index 17e9ed611416b1..2a1c61abf9f4f8 100644 --- a/src/python_testing/TC_MWOCTRL_2_4.py +++ b/src/python_testing/TC_MWOCTRL_2_4.py @@ -72,7 +72,8 @@ async def test_TC_MWOCTRL_2_4(self): self.step(3) selectedWattIndex = await self.read_mwoctrl_attribute_expect_success(endpoint=endpoint, attribute=attributes.SelectedWattIndex) - asserts.assert_true(selectedWattIndex >= 0 and selectedWattIndex < len(supportedWattsList), "SelectedWattIndex is out of range") + asserts.assert_true(selectedWattIndex >= 0 and selectedWattIndex < len( + supportedWattsList), "SelectedWattIndex is out of range") self.step(4) newWattIndex = (selectedWattIndex+1) % (len(supportedWattsList)-1)