(self, command: str)
| 3416 | return Completions() |
| 3417 | |
| 3418 | def _suggest_similar_command(self, command: str) -> str | None: |
| 3419 | return suggest_similar(command, self.get_visible_commands()) |
| 3420 | |
| 3421 | @staticmethod |
| 3422 | def _is_tty_session(session: PromptSession[str]) -> bool: |
no test coverage detected