コード例 #1
0
ファイル: submit.py プロジェクト: emaszs/CRABClient
    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)
コード例 #2
0
ファイル: submit.py プロジェクト: todor-ivanov/CRABClient
    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)
コード例 #3
0
ファイル: submit.py プロジェクト: smuzaffar/CRABClient
 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)