From 7a439992fffe2b072e0cef554be094eaa8f9cb1a Mon Sep 17 00:00:00 2001 From: ethanfel Date: Fri, 2 Jan 2026 01:25:04 +0100 Subject: [PATCH] Refactor utils.py by removing old comments Removed unnecessary comments and cleaned up code. --- utils.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/utils.py b/utils.py index a02fa46..1da0c6e 100644 --- a/utils.py +++ b/utils.py @@ -45,10 +45,6 @@ def load_json(path): try: with open(path, 'r') as f: data = json.load(f) - - # Ensure migration happens if loading old file - # We don't change structure here, HistoryTree class handles logic - return data, get_file_mtime(path) except: return DEFAULTS.copy(), 0