summaryrefslogtreecommitdiff
path: root/tools/configure_zephyr.py
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2025-05-24 11:19:48 +0200
committerxengineering <me@xengineering.eu>2025-05-24 11:19:48 +0200
commit2184ee617f1d6ac24a6e31733ba09b52e1eaa061 (patch)
tree356b09928390a9ced308c06740ad8759cb4cb382 /tools/configure_zephyr.py
parentca28bf9b784fd2c57133c1f8b5a6d99de7d10c6b (diff)
downloadiot-contact-2184ee617f1d6ac24a6e31733ba09b52e1eaa061.tar
iot-contact-2184ee617f1d6ac24a6e31733ba09b52e1eaa061.tar.zst
iot-contact-2184ee617f1d6ac24a6e31733ba09b52e1eaa061.zip
tools: Format Python scripts with `black`
Diffstat (limited to 'tools/configure_zephyr.py')
-rwxr-xr-xtools/configure_zephyr.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/configure_zephyr.py b/tools/configure_zephyr.py
index e709063..f4707c6 100755
--- a/tools/configure_zephyr.py
+++ b/tools/configure_zephyr.py
@@ -43,7 +43,7 @@ def main() -> None:
command.append(f"-DEXTRA_CONF_FILE={args.extra_config}")
if args.signing_key is not None:
- command.append(f"-DCONFIG_BOOT_SIGNATURE_KEY_FILE=\"{args.signing_key}\"")
+ command.append(f'-DCONFIG_BOOT_SIGNATURE_KEY_FILE="{args.signing_key}"')
subprocess.run(command, shell=False, check=True)