From 37e06dd412df93a20d8d0c012d448b409f2f379f Mon Sep 17 00:00:00 2001 From: Leo Vasanko Date: Tue, 21 Nov 2023 12:39:02 +0000 Subject: [PATCH] Don't restart on config changes. --- cista/droppy.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cista/droppy.py b/cista/droppy.py index 3271611..cb77d80 100644 --- a/cista/droppy.py +++ b/cista/droppy.py @@ -5,6 +5,7 @@ import msgspec def readconf() -> dict: p = Path.home() / ".droppy/config" # Hardcoded in Droppy + print("Reading Droppy config", p) cf = msgspec.json.decode((p / "config.json").read_bytes()) db = msgspec.json.decode((p / "db.json").read_bytes()) cf["path"] = p.parent / "files"