summaryrefslogtreecommitdiff
path: root/build_default.py
diff options
context:
space:
mode:
Diffstat (limited to 'build_default.py')
-rwxr-xr-xbuild_default.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/build_default.py b/build_default.py
index 3971a05..c0cf8d1 100755
--- a/build_default.py
+++ b/build_default.py
@@ -72,8 +72,7 @@ def run(toolchain: str,
# 1. Make sure the toolchain is supported, and set the right one here
supported_toolchain_ids = ["gnu", "arm"]
- assert (toolchain in supported_toolchain_ids,
- f"Toolchain must be from {supported_toolchain_ids}")
+ assert toolchain in supported_toolchain_ids, f"Toolchain must be from {supported_toolchain_ids}"
if toolchain == "arm":
toolchain_file_name = "bare-metal-armclang.cmake"
elif toolchain == "gnu":