(self, text: str, line: str, begidx: int, endidx: int)
| 797 | super().__init__() |
| 798 | |
| 799 | def complete_states(self, text: str, line: str, begidx: int, endidx: int) -> Completions: |
| 800 | assert self is complete_states_expected_self |
| 801 | return self._cmd.basic_complete(text, line, begidx, endidx, self.states) |
| 802 | |
| 803 | |
| 804 | class SupportFuncUserSubclass1(SupportFuncProvider): |
nothing calls this directly
no test coverage detected