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