Normalizes the command for the current platform.
(command: str)
| 318 | |
| 319 | |
| 320 | def _get_executable_command(command: str) -> str: |
| 321 | """Normalizes the command for the current platform.""" |
| 322 | if sys.platform == "win32": # pragma: no cover |
| 323 | return get_windows_executable_command(command) |
| 324 | else: # pragma: lax no cover |
| 325 | return command |
| 326 | |
| 327 | |
| 328 | async def _create_platform_compatible_process( |
no test coverage detected