Skip to content

Commit 748a045

Browse files
Fix prettier formatting in docs/progress.md
Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent e950f49 commit 748a045

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

docs/progress.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,12 @@
55
- Identified and fixed three simplification opportunities in the codebase:
66

77
**Dead `if dry_run` branch removed (`manager.py`):**
8+
89
- `_build_and_post_offer` had two identical `return 0 if publish_failures == 0 else 2` statements
910
guarded by `if dry_run:` / `else`. Both branches returned the same expression. Collapsed to one line.
1011

1112
**Duplicated subprocess-vs-direct offer-builder logic consolidated:**
13+
1214
- `manager.py` had `_build_offer_text_for_request` + `_build_offer_text_via_subprocess` (40 lines).
1315
- `daemon/main.py` had `_build_offer_for_action` (65 lines) reimplementing the same subprocess/direct
1416
branching independently — any change to the subprocess contract required two edits.
@@ -20,6 +22,7 @@
2022
- Removed `import shlex` and `import subprocess` from both `manager.py` and `daemon/main.py`.
2123

2224
**`config/editor.py` deleted (no production caller):**
25+
2326
- `greenfloor/config/editor.py` (128 lines) and `tests/test_config_editor.py` (96 lines) deleted.
2427
- The module supported `config-history-list` and `config-history-revert` commands removed in the
2528
2026-02-21 simplification pass (CLI 21 → 7 commands). No production code imported it.

0 commit comments

Comments
 (0)