From b8897ce67cd9120ccd23133aa9d70c2fb961de14 Mon Sep 17 00:00:00 2001 From: hubobel Date: Mon, 22 Jun 2026 19:27:04 +0200 Subject: [PATCH] Fehler im Dateisystem behoben --- categorize_transactions.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/categorize_transactions.py b/categorize_transactions.py index 4f618fa..bc01af1 100644 --- a/categorize_transactions.py +++ b/categorize_transactions.py @@ -50,10 +50,7 @@ else: # Kategorien laden # -------------------------------------------------- -categories_file = Path.home() / "Kategorien.json" - -if not categories_file.exists(): - categories_file = Path(__file__).parent / "Kategorien.json" +categories_file = Path(__file__).parent / "Kategorien.json" with open(categories_file, encoding="utf-8") as f: categories = json.load(f)