(self, text: str, line: str, begidx: int, endidx: int)
| 232 | return self.basic_complete(text, line, begidx, endidx, self.completions_for_flag) |
| 233 | |
| 234 | def pos_1_completer(self, text: str, line: str, begidx: int, endidx: int) -> Completions: |
| 235 | return self.basic_complete(text, line, begidx, endidx, self.completions_for_pos_1) |
| 236 | |
| 237 | def pos_2_completer(self, text: str, line: str, begidx: int, endidx: int) -> Completions: |
| 238 | return self.basic_complete(text, line, begidx, endidx, self.completions_for_pos_2) |
nothing calls this directly
no test coverage detected