Skip to content

Commit

Permalink
Restyled by autopep8
Browse files Browse the repository at this point in the history
  • Loading branch information
restyled-commits authored and rbultman committed Jan 18, 2024
1 parent 70dd57c commit 168d424
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/python_testing/TC_MWOCTRL_2_4.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 168d424

Please sign in to comment.