(self, text, line, begidx, endidx)
| 21 | pass |
| 22 | |
| 23 | def complete_bar(self, text, line, begidx, endidx) -> Completions: |
| 24 | # Return 5 items |
| 25 | items = [f"item{i}" for i in range(5) if f"item{i}".startswith(text)] |
| 26 | return Completions.from_values(items) |
| 27 | |
| 28 | |
| 29 | @pytest.fixture |
nothing calls this directly
no test coverage detected