(version: str)
| 999 | |
| 1000 | |
| 1001 | def parse_version(version: str) -> tuple[int, int]: |
| 1002 | major, minor = version.strip().split(".") |
| 1003 | return int(major), int(minor) |
| 1004 | |
| 1005 | |
| 1006 | def typeshed_py_version(options: Options) -> tuple[int, int]: |
no test coverage detected
searching dependent graphs…