Merge pull request #3899 from adityahase/fix-dict-keys
Convert dict.keys() to list
This commit is contained in:
commit
f8abb5fc10
1 changed files with 1 additions and 1 deletions
|
|
@ -74,7 +74,7 @@ def get_app_commands(app):
|
|||
|
||||
@click.command('get-frappe-commands')
|
||||
def get_frappe_commands():
|
||||
commands = get_app_commands('frappe').keys()
|
||||
commands = list(get_app_commands('frappe').keys())
|
||||
|
||||
for app in get_apps():
|
||||
app_commands = get_app_commands(app)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue