Get platform.
()
| 122 | |
| 123 | |
| 124 | def get_platform() -> str: |
| 125 | """Get platform.""" |
| 126 | system = platform.system() |
| 127 | if system == "Darwin": |
| 128 | return "MacOS" |
| 129 | return system |
| 130 | |
| 131 | def get_default_bash_process() -> BashProcess: |
| 132 | """Get file path from string.""" |