From 2e35d0074a67ec56112e5362bd829a542bc1334a Mon Sep 17 00:00:00 2001
From: Jean-Michel Picod <jmichel@google.com>
Date: Wed, 29 Apr 2020 11:05:28 +0200
Subject: [PATCH] Introduce formatting error to test yapf

---
 deploy.py | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/deploy.py b/deploy.py
index 6b8377d..c480656 100755
--- a/deploy.py
+++ b/deploy.py
@@ -302,7 +302,8 @@ class OpenSKInstaller:
       # 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):
@@ -314,7 +315,8 @@ class OpenSKInstaller:
     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):
-- 
GitLab