(self)
| 146 | )) |
| 147 | |
| 148 | def start(self): |
| 149 | if self.subapp is None: |
| 150 | print( |
| 151 | "No subcommand specified. Must specify one of: " |
| 152 | + ", ".join(map(repr, self.subcommands)) |
| 153 | + ".\n" |
| 154 | ) |
| 155 | self.print_description() |
| 156 | self.print_subcommands() |
| 157 | self.exit(1) |
| 158 | else: |
| 159 | return self.subapp.start() |
no outgoing calls