From 4a44a51ba5b0e2b52ee41123c330edfb7a0a8f62 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Thu, 21 Nov 2019 11:25:24 +0100 Subject: [PATCH] Make the code style consistent in the get_cli_arguments method Signed-off-by: Pierre-Yves Chibon --- distgit_bugzilla_sync/script.py | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/distgit_bugzilla_sync/script.py b/distgit_bugzilla_sync/script.py index ed98339..ee4bdda 100644 --- a/distgit_bugzilla_sync/script.py +++ b/distgit_bugzilla_sync/script.py @@ -478,12 +478,14 @@ class DistgitBugzillaSync: '--env', dest='env', help='Run the script for a specific environment, overrides the one ' 'set in the configuration file') - parser.add_argument('--add-config-file', metavar='CONFIG_FILE', - dest='addl_config_files', action='append', - help="File(s) from which to read overriding configuration") - parser.add_argument('--add-email-overrides-file', metavar='EMAIL_OVERRIDES_FILE', - dest='addl_email_overrides_files', action='append', - help="File(s) from which to read additional email overrides") + parser.add_argument( + '--add-config-file', metavar='CONFIG_FILE', + dest='addl_config_files', action='append', + help="File(s) from which to read overriding configuration") + parser.add_argument( + '--add-email-overrides-file', metavar='EMAIL_OVERRIDES_FILE', + dest='addl_email_overrides_files', action='append', + help="File(s) from which to read additional email overrides") parser.add_argument( '-p', '--project', dest='projects', nargs='+', help='Update one or more projects (provided as namespace/name), '