(self)
| 778 | ) |
| 779 | |
| 780 | def create_parser(self): |
| 781 | command_table = self._get_command_table() |
| 782 | # Also add a 'help' command. |
| 783 | command_table['help'] = self.create_help_command() |
| 784 | return ServiceArgParser( |
| 785 | operations_table=command_table, service_name=self._name |
| 786 | ) |
| 787 | |
| 788 | |
| 789 | class ServiceOperation: |
no test coverage detected