tools build: fix toolchain tuple, should be list

pull/12982/head
Martin Kojtal 2020-05-18 07:37:23 +01:00
parent 6e59bdd64d
commit 810b0262c1
1 changed files with 1 additions and 1 deletions

View File

@ -424,7 +424,7 @@ def get_mbed_official_release(version):
tuple(
[
TARGET_MAP[target].name,
tuple('ARM', 'GCC_ARM')
tuple(['ARM', 'GCC_ARM'])
]
) for target in TARGET_NAMES
)