(self, text: str, line: str, begidx: int, endidx: int)
| 75 | self._cmd.last_result = {"args": args} |
| 76 | |
| 77 | def complete_durian(self, text: str, line: str, begidx: int, endidx: int) -> list[str]: |
| 78 | return self._cmd.basic_complete(text, line, begidx, endidx, ["stinks", "smells", "disgusting"]) |
| 79 | |
| 80 | elderberry_parser = cmd2.Cmd2ArgumentParser() |
| 81 | elderberry_parser.add_argument("arg1") |
nothing calls this directly
no test coverage detected