(prefix: Prefix, version: str)
| 42 | |
| 43 | @contextlib.contextmanager |
| 44 | def in_env(prefix: Prefix, version: str) -> Generator[None]: |
| 45 | envdir = lang_base.environment_dir(prefix, ENVIRONMENT_DIR, version) |
| 46 | with envcontext(get_env_patch(envdir)): |
| 47 | yield |
| 48 | |
| 49 | |
| 50 | def _conda_exe() -> str: |
nothing calls this directly
no test coverage detected