(self, python_exe_path: str)
| 262 | venv.create(name, with_pip=with_pip) |
| 263 | |
| 264 | def get_script_header(self, python_exe_path: str) -> str: |
| 265 | if IS_WINDOWS: |
| 266 | return ( |
| 267 | f'@echo off & "{python_exe_path}" -x "%~f0" %* & goto :eof\n' |
| 268 | ) |
| 269 | return f"#!{python_exe_path}\n" |
no outgoing calls
no test coverage detected