def validateOptions(self): """ After doing the general options validation from the parent SubCommand class, do the validation of options that are specific to the submit command. """ ## First do the basic validation in the SubCommand. SubCommand.validateOptions(self) validateSubmitOptions(self.options, self.args)
def validateConfigOption(self): """ After doing the general options validation from the parent SubCommand class, do the validation of options that are specific to the submit command. """ validateSubmitOptions(self.options, self.args)