Return the (sys.platform, machine) key for the current platform.
()
| 53 | |
| 54 | |
| 55 | def get_platform_key() -> tuple[str, str]: |
| 56 | """Return the (sys.platform, machine) key for the current platform.""" |
| 57 | return (sys.platform, platform.machine()) |
| 58 | |
| 59 | |
| 60 | def get_asset_info() -> tuple[str, str]: |
no outgoing calls
no test coverage detected
searching dependent graphs…