(self, binary_name: str)
| 63 | return ".exe" if self is self.Windows_x86_64 else "" |
| 64 | |
| 65 | def binary_name(self, binary_name: str) -> str: |
| 66 | return f"{binary_name}{self.extension}" |
| 67 | |
| 68 | |
| 69 | CURRENT_PLATFORM = Platform.current() |
no outgoing calls
no test coverage detected