From f58cf1c3f62076f7e01cd9c7d7a568ccefbee22b Mon Sep 17 00:00:00 2001 From: Jean-Michel Picod Date: Tue, 30 Apr 2024 10:45:22 +0200 Subject: [PATCH] Update deploy.py Ignore inconsistent quotes on 2 lines to avoid unnecessary escape sequences --- deploy.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/deploy.py b/deploy.py index 6dc21ca0..af841f64 100755 --- a/deploy.py +++ b/deploy.py @@ -419,7 +419,7 @@ def _build_app_or_example(self, is_example: bool): command = [ "cargo", "build", "--release", f"--target={props.arch}", - f"--features={','.join(self.args.features)}" + f"--features={','.join(self.args.features)}" # pylint: disable:W1405 ] if is_example: command.extend(["--example", self.args.application]) @@ -439,7 +439,8 @@ def _check_invariants(self): features = ["std"] features.extend(self.args.features) self.checked_command_output([ - "cargo", "test", f"--features={','.join(features)}", "--lib", + "cargo", "test", + f"--features={','.join(features)}", "--lib", # pylint: disable:W1405 "customization" ])