awacke1 commited on
Commit
1966119
Β·
verified Β·
1 Parent(s): 917d273

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -7,7 +7,7 @@ import streamlit as st
7
  def cache_user_data():
8
  return {'email': '', 'phone': '', 'password': ''}
9
 
10
- @st.cache_data(experimental_allow_widgets=True) # πŸ‘ˆ Set the parameter
11
  def main():
12
  st.title('User Data Caching Example')
13
 
 
7
  def cache_user_data():
8
  return {'email': '', 'phone': '', 'password': ''}
9
 
10
+ #@st.cache_data(experimental_allow_widgets=True) # πŸ‘ˆ Set the parameter
11
  def main():
12
  st.title('User Data Caching Example')
13