We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a47bd2e commit fc374d6Copy full SHA for fc374d6
build_platform.py
@@ -252,11 +252,9 @@ def generate_uf2(example_path):
252
# expand groups:
253
for arg in sys.argv[1:]:
254
platform = ALL_PLATFORMS.get(arg, None)
255
- print("254 platform ", platform)
256
- if isinstance(platform, str):
257
- print('Platform append: ', platform)
258
- platforms.append(platform)
259
- elif isinstance(platform, collections.abc.Iterable):
+ if isinstance(platform, list):
+ platforms.append(arg)
+ elif isinstance(platform, tuple):
260
for p in platform:
261
platforms.append(p)
262
else:
0 commit comments