From c2fec11a38e7af535ae85f7c54a016793f252aaf Mon Sep 17 00:00:00 2001 From: Wouter Deconinck <wdconinc@gmail.com> Date: Tue, 30 Aug 2022 14:51:54 -0500 Subject: [PATCH] style: make linter happy --- DDG4/python/DDSim/DD4hepSimulation.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/DDG4/python/DDSim/DD4hepSimulation.py b/DDG4/python/DDSim/DD4hepSimulation.py index 1c7990b7f..041ba589c 100644 --- a/DDG4/python/DDSim/DD4hepSimulation.py +++ b/DDG4/python/DDSim/DD4hepSimulation.py @@ -149,7 +149,8 @@ class DD4hepSimulation(object): default=ConfigHelper.makeList(self.compactFile), type=str, help="The compact XML file, or multiple compact files, if the last one is the closer.") - parser.add_argument("--runType", action="store", choices=("batch", "vis", "run", "shell", "qt"), default=self.runType, + parser.add_argument("--runType", action="store", choices=("batch", "vis", "run", "shell", "qt"), + default=self.runType, help="The type of action to do in this invocation" # Note: implicit string concatenation "\nbatch: just simulate some events, needs numberOfEvents, and input file or gun" "\nvis: enable visualisation, run the macroFile if it is set" -- GitLab