(prefix: Prefix, version: str)
| 31 | |
| 32 | @contextlib.contextmanager |
| 33 | def in_env(prefix: Prefix, version: str) -> Generator[None]: |
| 34 | envdir = lang_base.environment_dir(prefix, ENVIRONMENT_DIR, version) |
| 35 | with envcontext(get_env_patch(envdir)): |
| 36 | yield |
| 37 | |
| 38 | |
| 39 | @contextlib.contextmanager |
nothing calls this directly
no test coverage detected