From 933bf9905250314cc3ee07d42b6f431c22734ff5 Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Mon, 29 Jul 2019 03:44:40 +0200 Subject: [PATCH] [mod] pep8 --- src/yunohost/app.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/yunohost/app.py b/src/yunohost/app.py index 6a5f8a757..73ec43adb 100644 --- a/src/yunohost/app.py +++ b/src/yunohost/app.py @@ -1484,7 +1484,7 @@ def app_action_run(app, action, args=None): # Retrieve arguments list for install script args_dict = dict(urlparse.parse_qsl(args, keep_blank_values=True)) if args else {} args_odict = _parse_args_for_action(actions[action], args=args_dict) - args_list = [ value[0] for value in args_odict.values() ] + args_list = [value[0] for value in args_odict.values()] app_id, app_instance_nb = _parse_app_instance_name(app) @@ -1553,10 +1553,10 @@ def app_config_show_panel(app): } return_code, parsed_values = hook_exec(config_script, - args=["show"], - env=env, - return_format="plain_dict" - ) + args=["show"], + env=env, + return_format="plain_dict" + ) if return_code != 0: raise Exception("script/config show return value code: %s (considered as an error)", return_code)