Skip to content

Commit 810b026

Browse files
committed
tools build: fix toolchain tuple, should be list
1 parent 6e59bdd commit 810b026

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/build_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ def get_mbed_official_release(version):
424424
tuple(
425425
[
426426
TARGET_MAP[target].name,
427-
tuple('ARM', 'GCC_ARM')
427+
tuple(['ARM', 'GCC_ARM'])
428428
]
429429
) for target in TARGET_NAMES
430430
)

0 commit comments

Comments
 (0)