(self)
| 169 | return result, None |
| 170 | |
| 171 | def get_module_completions(self) -> tuple[list[str], CompletionAction | None] | None: |
| 172 | line = self.get_line() |
| 173 | return self.config.module_completer.get_completions(line) |
| 174 | |
| 175 | def get_trimmed_history(self, maxlength: int) -> list[str]: |
| 176 | if maxlength >= 0: |
no test coverage detected