(state)
| 127 | return |
| 128 | |
| 129 | def _restore(state): |
| 130 | existing = state.get("touched_paths", []) |
| 131 | merged = list(dict.fromkeys(list(paths) + list(existing))) |
| 132 | if len(merged) > 200: |
| 133 | merged = merged[:200] |
| 134 | state["touched_paths"] = merged |
| 135 | if baseline_sha and not state.get("baseline_sha"): |
| 136 | state["baseline_sha"] = baseline_sha |
| 137 | with_locked_state(session_id, _restore) |
| 138 | |
| 139 |
nothing calls this directly
no outgoing calls
no test coverage detected