def load_command_table(self, args):
     from azext_attestation.generated.commands import load_command_table
     load_command_table(self, args)
     try:
         from azext_attestation.manual.commands import load_command_table as load_command_table_manual
         load_command_table_manual(self, args)
     except ImportError:
         pass
     return self.command_table
Example #2
0
 def load_command_table(self, args):
     from azext_attestation.generated.commands import load_command_table
     load_command_table(self, args)
     try:
         from azext_attestation.manual.commands import load_command_table as load_command_table_manual
         load_command_table_manual(self, args)
     except ImportError as e:
         if e.name.endswith('manual.commands'):
             pass
         else:
             raise e
     return self.command_table