Skip to content
Snippets Groups Projects
Commit 2e35d007 authored by Jean-Michel Picod's avatar Jean-Michel Picod
Browse files

Introduce formatting error to test yapf

parent 332d7bc2
No related branches found
No related tags found
No related merge requests found
...@@ -302,7 +302,8 @@ class OpenSKInstaller: ...@@ -302,7 +302,8 @@ class OpenSKInstaller:
# Need to update # Need to update
self.checked_command_output( self.checked_command_output(
["rustup", "install", target_toolchain_fullstring]) ["rustup", "install", target_toolchain_fullstring])
self.checked_command_output(["rustup", "target", "add", SUPPORTED_BOARDS[self.args.board].arch]) self.checked_command_output(
["rustup", "target", "add", SUPPORTED_BOARDS[self.args.board].arch])
info("Rust toolchain up-to-date") info("Rust toolchain up-to-date")
def build_tockos(self): def build_tockos(self):
...@@ -314,7 +315,8 @@ class OpenSKInstaller: ...@@ -314,7 +315,8 @@ class OpenSKInstaller:
self.checked_command_output(["make"], cwd=props.path) self.checked_command_output(["make"], cwd=props.path)
def build_example(self): def build_example(self):
info("Building example {}".format(self.args.application)) info(
"Building example {}".format(self.args.application))
self._build_app_or_example(is_example=True) self._build_app_or_example(is_example=True)
def build_opensk(self): def build_opensk(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment