(bundle: dict[str, Any], root: str | None)
| 186 | |
| 187 | |
| 188 | def env_assignment(bundle: dict[str, Any], root: str | None) -> dict[str, Any] | None: |
| 189 | root_env = bundle.get("root_env") |
| 190 | if not root_env: |
| 191 | return None |
| 192 | return {"name": str(root_env), "value": root} |
| 193 | |
| 194 | |
| 195 | def check_expected_files( |
no test coverage detected