()
| 58 | |
| 59 | |
| 60 | def _resolve_lock_data() -> dict[str, Any] | None: |
| 61 | if not is_packaged_desktop_runtime(): |
| 62 | return None |
| 63 | |
| 64 | lock_path = os.environ.get(DESKTOP_CORE_LOCK_PATH_ENV, "").strip() |
| 65 | if not lock_path: |
| 66 | return None |
| 67 | return _load_lock_data(lock_path) |
| 68 | |
| 69 | |
| 70 | def get_desktop_core_lock_constraints() -> tuple[str, ...]: |
no test coverage detected