diff --git a/deploy.py b/deploy.py index af841f64..2cae74c5 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)}" # pylint: disable:W1405 + f"--features={','.join(self.args.features)}" # pylint: disable=W1405 ] if is_example: command.extend(["--example", self.args.application]) @@ -440,7 +440,7 @@ def _check_invariants(self): features.extend(self.args.features) self.checked_command_output([ "cargo", "test", - f"--features={','.join(features)}", "--lib", # pylint: disable:W1405 + f"--features={','.join(features)}", "--lib", # pylint: disable=W1405 "customization" ])