Private
Public Access
0
0

feat(paths): remove SLOP_CONFIG env-var fallback; add --config CLI flag (FR2)

This commit is contained in:
2026-06-19 07:45:10 -04:00
parent 49bc4908e6
commit 02fef00470
5 changed files with 136 additions and 22 deletions
-2
View File
@@ -191,8 +191,6 @@ def _save_config_to_disk(config: dict[str, Any]) -> None:
# only when the user actually saves config.
import tomli_w
config = _clean_nones(config)
sys.stderr.write(f"[DEBUG] Saving config. Theme: {config.get('theme')}\n")
sys.stderr.flush()
with open(get_config_path(), "wb") as f:
tomli_w.dump(config, f)