(self, formatter=None)
| 405 | class MarvinCliParser(OptionParser): |
| 406 | |
| 407 | def format_help(self, formatter=None): |
| 408 | if formatter is None: |
| 409 | formatter = self.formatter |
| 410 | result = [] |
| 411 | if self.usage: |
| 412 | result.append(MarvinCliHelp.print_msg("\nUsage: marvincli [cmd] [options]. See, the below cmds for more information." |
| 413 | "(*) signifies mandatory fields \n\n")) |
| 414 | self.description = MarvinCliHelp.print_cmds_help() |
| 415 | if self.description: |
| 416 | result.append(self.format_description(formatter) + "\n") |
| 417 | return "".join(result) |
| 418 | |
| 419 | |
| 420 | def main(): |
nothing calls this directly
no test coverage detected