From 41e4d608b3d27b7bb864ef835a151cf3940298c5 Mon Sep 17 00:00:00 2001 From: Esther van der Laan Date: Mon, 6 Jan 2025 10:27:15 +0100 Subject: [PATCH] fix removal st.cache_data() --- functions.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/functions.py b/functions.py index f066af2..74430a7 100644 --- a/functions.py +++ b/functions.py @@ -133,9 +133,9 @@ def read_user_data(username): # checks all employees files based on list of employees and creates for selected week overview of work pressure of each employee # if employee didn't fill form for selected week, it will be listed as bad_employee and shamed in dashboard -@st.cache_data( - ttl=300, show_spinner="Je zorgen maken is de verkeerde kant op fantaseren" -) +# @st.cache_data( +# ttl=300, show_spinner="Je zorgen maken is de verkeerde kant op fantaseren" +# ) def create_week_planning_team(week_number, employees_list): # print(employees_list) df_current_week = pd.DataFrame(columns=["name", "druk", "note", "color"])