def __init__(self):
     """ Initialize the Arg """
     FlagArg.__init__(self, '-c', '--config', action="store", help="Config file to use for conversion")
Exemple #2
0
 def __init__(self):
     """ Initialize the Arg """
     FlagArg.__init__(self, '-a', '--args', action="store", nargs='+', help="Specify the additional args: arg=value")
Exemple #3
0
 def __init__(self, *, help):
     """ Initialize the Arg """
     FlagArg.__init__(self, "-w", "--workspace", action="store", help=help)
Exemple #4
0
 def __init__(self, *, help):
     """ Initialize the Arg """
     FlagArg.__init__(self, "-p", "--project", action="store", help=help)