bugfix: iterate the keys rather than KV pairs

This commit is contained in:
Hongbo 2024-02-27 22:49:32 -05:00 committed by GitHub
parent a9b20147de
commit 86b05ee786
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -462,7 +462,7 @@ def action_guess(args):
if len(supported) > 0: if len(supported) > 0:
print(f'SUCCESS: MLB {mlb} looks supported for:') print(f'SUCCESS: MLB {mlb} looks supported for:')
for model in supported.items(): for model in supported:
print(f'- {model}, up to {supported[model][0]}, default: {supported[model][1]}, latest: {supported[model][2]}') print(f'- {model}, up to {supported[model][0]}, default: {supported[model][1]}, latest: {supported[model][2]}')
return 0 return 0