From 5035104d9d18e2a90aff0a63d824c8c85db9a248 Mon Sep 17 00:00:00 2001 From: Erik Skultety Date: Wed, 24 May 2023 09:56:26 +0200 Subject: commandline: Break install parent dependency parsers to multiple lines Future patches may add more options and hence we'll need to specify them here in the dependency parsers list. This change is purely to enhance code readability. Signed-off-by: Erik Skultety --- lcitool/commandline.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/lcitool/commandline.py b/lcitool/commandline.py index 72d2544..607b32d 100644 --- a/lcitool/commandline.py +++ b/lcitool/commandline.py @@ -238,8 +238,13 @@ class CommandLine: installparser = subparsers.add_parser( "install", help="perform unattended host installation", - parents=[waitopt, installtargetopt, installhostopt, - installstrategyopt, installforceopt], + parents=[ + waitopt, + installtargetopt, + installhostopt, + installstrategyopt, + installforceopt, + ], ) installparser.set_defaults(func=Application._action_install) -- cgit v1.1