(self)
| 301 | )) |
| 302 | |
| 303 | def start(self): |
| 304 | if self.subapp is None: |
| 305 | print("No subcommand specified. Must specify one of: %s"%(self.subcommands.keys())) |
| 306 | print() |
| 307 | self.print_description() |
| 308 | self.print_subcommands() |
| 309 | self.exit(1) |
| 310 | else: |
| 311 | return self.subapp.start() |
nothing calls this directly
no outgoing calls
no test coverage detected