(os: str)
| 43 | |
| 44 | |
| 45 | def os_convert(os: str) -> Optional[QL_OS]: |
| 46 | alias_map = { |
| 47 | 'darwin': 'macos' |
| 48 | } |
| 49 | |
| 50 | return __name_to_enum(os, os_map, alias_map) |
| 51 | |
| 52 | |
| 53 | def arch_convert(arch: str) -> Optional[QL_ARCH]: |
nothing calls this directly
no test coverage detected