(state)
| 50 | def load_baseline_sha(session_id): |
| 51 | """Load the git baseline SHA from state.""" |
| 52 | def _load(state): |
| 53 | return state.get("baseline_sha") |
| 54 | return with_locked_state(session_id, _load) |
| 55 | |
| 56 |
nothing calls this directly
no outgoing calls
no test coverage detected