Bläddra i källkod

Convert dict.keys() to list

version-14
Aditya Hase 8 år sedan
förälder
incheckning
b51ad328af
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. +1
    -1
      frappe/utils/bench_helper.py

+ 1
- 1
frappe/utils/bench_helper.py Visa fil

@@ -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)


Laddar…
Avbryt
Spara