(version: tuple[int, int, int] | None)
| 52 | |
| 53 | |
| 54 | def format_codex_cli_version(version: tuple[int, int, int] | None) -> str: |
| 55 | if version is None: |
| 56 | return "" |
| 57 | return ".".join(str(part) for part in version) |
| 58 | |
| 59 | |
| 60 | def chat_wire_compatible_codex_version() -> tuple[int, int, int]: |
no test coverage detected