(self, text, line, begidx, endidx)
| 13 | pass |
| 14 | |
| 15 | def complete_foo(self, text, line, begidx, endidx) -> Completions: |
| 16 | # Return 10 items |
| 17 | items = [f"item{i}" for i in range(10) if f"item{i}".startswith(text)] |
| 18 | return Completions.from_values(items) |
| 19 | |
| 20 | def do_bar(self, args): |
| 21 | pass |
nothing calls this directly
no test coverage detected