ppsingh commited on
Commit
4fc18fb
·
1 Parent(s): 1e8bbcc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -104,9 +104,10 @@ import numpy as np
104
  import streamlit as st
105
 
106
  col1, col2, col3 = st.columns(3)
107
- session_state = st.session_state.get(col1=False, col2=False, col3=False)
108
-
109
-
 
110
 
111
  col1_one = col1.button("CARTE", key="1")
112
  col2_one = col2.button("TABLEAU", key="2")
 
104
  import streamlit as st
105
 
106
  col1, col2, col3 = st.columns(3)
107
+ #session_state = st.session_state.get(col1=False, col2=False, col3=False)
108
+ st.session_state.col1 = False
109
+ st.session_state.col2 = False
110
+ st.session_state.col3 = False
111
 
112
  col1_one = col1.button("CARTE", key="1")
113
  col2_one = col2.button("TABLEAU", key="2")