コード例 #1
0
 def __init__(self):
     """ Initialize the Arg """
     FlagArg.__init__(self, '-c', '--config', action="store", help="Config file to use for conversion")
コード例 #2
0
ファイル: inline_args.py プロジェクト: cloew/Kaovert
 def __init__(self):
     """ Initialize the Arg """
     FlagArg.__init__(self, '-a', '--args', action="store", nargs='+', help="Specify the additional args: arg=value")
コード例 #3
0
ファイル: workspace_arg.py プロジェクト: cloew/TogglDriver
 def __init__(self, *, help):
     """ Initialize the Arg """
     FlagArg.__init__(self, "-w", "--workspace", action="store", help=help)
コード例 #4
0
ファイル: project_arg.py プロジェクト: cloew/TogglDriver
 def __init__(self, *, help):
     """ Initialize the Arg """
     FlagArg.__init__(self, "-p", "--project", action="store", help=help)