(venv_path: Path)
| 68 | |
| 69 | |
| 70 | def _venv_python_path(venv_path: Path) -> Path: |
| 71 | if sys.platform == "win32": |
| 72 | return venv_path / "Scripts" / "python.exe" |
| 73 | return venv_path / "bin" / "python" |
| 74 | |
| 75 | |
| 76 | def _generate_vscode_config( |
no outgoing calls
no test coverage detected