Skip to content

Commit 94639b1

Browse files
committed
fix: undo formatting change
1 parent 15c2a79 commit 94639b1

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

test/hitl/example_runner.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,7 @@ def run(self, use_uart, assert_success=True):
1111
pyb = pyboard.Pyboard(self.pyboard_port, 115200)
1212
pyb.enter_raw_repl()
1313
try:
14-
cmd = (
15-
f'from {self.example_module} import run_example\n'
16-
f'run_example("{self.product_uid}", {use_uart})'
17-
)
14+
cmd = f'from {self.example_module} import run_example; run_example("{self.product_uid}", {use_uart})'
1815
output = pyb.exec(cmd)
1916
output = output.decode()
2017
finally:

0 commit comments

Comments
 (0)