Add def aut(name, *args): """ Joins the executable name and argument into a single command string """ return " ".join((name, *args)) function in utility.py and using it main script startApplication...
Add def aut(name, *args):
"""
Joins the executable name and argument
into a single command string
"""
return " ".join((name, *args))
function in utility.py and using it main script startApplication(utility.aut("leahi", "-E")) as per comment