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