def getValue(self, args): """ Return the value from the args """ inlineArgs = FlagArg.getValue(self, args) if inlineArgs is None: return {} else: inlineArgs = [arg.split('=') for arg in inlineArgs] return {arg[0]:arg[1] for arg in inlineArgs}
def getValue(self, args): """ Return the value from the args """ filename = FlagArg.getValue(self, args) return ConversionConfig(filename)
def getValue(self, args): """ Return the value from the args """ workspaceName = FlagArg.getValue(self, args) return GlobalConfig.connection.workspaces.withName(workspaceName).first
def getValue(self, args): """ Return the value from the args """ projectName = FlagArg.getValue(self, args) return GlobalConfig.connection.projects.withName(projectName).first