refactor: phase 4 sweep — remove dead repo_id param from get_commits_for_branch
Three stale items in store.py fixed: - Module docstring commit schema: removed 'repo_id' from the example JSON block - _verify_commit_id docstring: removed repo_id from the compute_commit_id coverage list (compute_commit_id never included repo_id) - get_commits_for_branch: removed dead repo_id: str parameter and its docstring entry — the parameter was never read in the function body
Updated all callers to drop the now-gone argument: - muse/cli/commands/log.py (2 sites) - muse/cli/commands/shortlog.py (1 site) - tests/test_core_store.py (5 sites) - tests/test_core_coverage_gaps.py (4 sites + 1 CommitRecord straggler) - tests/test_phase5_store_linear_walks.py (2 sites) - tests/test_cmd_branch.py (3 sites) - tests/test_cmd_checkout.py (1 site) - tests/test_perf_phase3.py (2 sites)
No comments yet. Be the first to start the discussion.