Jon Solow
commited on
Commit
·
74fba03
1
Parent(s):
13842c7
Set masked roster load ttl to 1 minute instead of 60
Browse files
src/pages/11_Scoreboard.py
CHANGED
@@ -28,7 +28,7 @@ def get_users_df():
|
|
28 |
return all_users
|
29 |
|
30 |
|
31 |
-
@st.cache_data(ttl=60 *
|
32 |
def load_masked_rosters() -> dict[int, dict[str, PlayerOption]]:
|
33 |
options_map = get_map_week_player_id_option()
|
34 |
roster_user_position_map: dict[int, dict[str, PlayerOption]] = {}
|
|
|
28 |
return all_users
|
29 |
|
30 |
|
31 |
+
@st.cache_data(ttl=60 * 1)
|
32 |
def load_masked_rosters() -> dict[int, dict[str, PlayerOption]]:
|
33 |
options_map = get_map_week_player_id_option()
|
34 |
roster_user_position_map: dict[int, dict[str, PlayerOption]] = {}
|