(cli: cmd2.Cmd, text: str, line: str, begidx: int, endidx: int)
| 35 | |
| 36 | |
| 37 | def standalone_completer(cli: cmd2.Cmd, text: str, line: str, begidx: int, endidx: int) -> Completions: |
| 38 | return cli.basic_complete(text, line, begidx, endidx, standalone_completions) |
| 39 | |
| 40 | |
| 41 | class ArgparseCompleterTester(cmd2.Cmd): |
nothing calls this directly
no test coverage detected
searching dependent graphs…