| 20 | |
| 21 | @dataclass(frozen=True) |
| 22 | class Platform: |
| 23 | arch: str |
| 24 | os: str |
| 25 | distro: str |
| 26 | distro_name: str |
| 27 | distro_codename: str |
| 28 | distro_like: str |
| 29 | distro_major_version: str |
| 30 | distro_version: str |
| 31 | mac_release: str |
| 32 | win_release: str |
| 33 | |
| 34 | |
| 35 | def _get_platform() -> Platform: |
no outgoing calls
no test coverage detected