(state)
| 43 | def save_baseline_sha(session_id, sha): |
| 44 | """Save the git baseline SHA to state.""" |
| 45 | def _save(state): |
| 46 | state["baseline_sha"] = sha |
| 47 | with_locked_state(session_id, _save) |
| 48 | |
| 49 |
nothing calls this directly
no outgoing calls
no test coverage detected