(version: tuple[int, int, int])
| 66 | |
| 67 | |
| 68 | def _format_semver(version: tuple[int, int, int]) -> str: |
| 69 | return f"{version[0]}.{version[1]}.{version[2]}" |
| 70 | |
| 71 | |
| 72 | def _next_patch(version: tuple[int, int, int]) -> tuple[int, int, int]: |
no outgoing calls
no test coverage detected