From cf3ef89fa6fb32752f33ad276deff42e884de092 Mon Sep 17 00:00:00 2001 From: Nicholas <16458785+NickKalar@users.noreply.github.com> Date: Fri, 21 Nov 2025 16:37:58 -0500 Subject: [PATCH] Added update function stub --- src/FileHandler.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/FileHandler.py b/src/FileHandler.py index 68e5e24..ee720e2 100644 --- a/src/FileHandler.py +++ b/src/FileHandler.py @@ -14,6 +14,9 @@ def read_json() -> dict: except: print("Could not find or read file.") +def update_json(meals: dict): + print("TODO: Add update logic") + def get_selected_meals(meals: dict) -> dict: meal_json = read_json() selected_meals = {}