Skip to content

Commit

Permalink
Introduce formatting error to test yapf
Browse files Browse the repository at this point in the history
  • Loading branch information
jmichelp committed Apr 29, 2020
1 parent 332d7bc commit 2e35d00
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,8 @@ def update_rustc_if_needed(self):
# Need to update
self.checked_command_output(
["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")

def build_tockos(self):
Expand All @@ -314,7 +315,8 @@ def build_tockos(self):
self.checked_command_output(["make"], cwd=props.path)

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)

def build_opensk(self):
Expand Down

0 comments on commit 2e35d00

Please sign in to comment.