The reconciliation retirement (#62, PR #63, 6af2020) deleted all tracked sources, but the untracked bytecode cache survived on the working machine: views_postprocessing/reconciliation/__pycache__/ still exists, so directory listings claim a reconciliation package lives here. It already misled one repo inspection (2026-07-19) into reporting the migration unfinished.
Not a runtime risk — no __init__.py, no sources, not importable. Pure hygiene.
Fix (one line, deferred by maintainer decision):
rm -rf views_postprocessing/reconciliation
Then confirm git status clean and PYTHONPATH=. pytest -q green (trivially expected).
Tracked in the risk register as C-47 (Tier 4); cross-refs C-42 (the migration), D-12 (the repo-rename assessment this could mislead).
🤖 Generated with Claude Code
The reconciliation retirement (#62, PR #63,
6af2020) deleted all tracked sources, but the untracked bytecode cache survived on the working machine:views_postprocessing/reconciliation/__pycache__/still exists, so directory listings claim a reconciliation package lives here. It already misled one repo inspection (2026-07-19) into reporting the migration unfinished.Not a runtime risk — no
__init__.py, no sources, not importable. Pure hygiene.Fix (one line, deferred by maintainer decision):
Then confirm
git statusclean andPYTHONPATH=. pytest -qgreen (trivially expected).Tracked in the risk register as C-47 (Tier 4); cross-refs C-42 (the migration), D-12 (the repo-rename assessment this could mislead).
🤖 Generated with Claude Code