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 = {}