andreska commited on
Commit
6933b7b
·
verified ·
1 Parent(s): 6519bba

Fix syntax error

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -43,7 +43,7 @@ st.markdown(
43
  )
44
 
45
  # Define the placeholder globally (outside columns)
46
- if st.session_state && st.session_state.user_input:
47
  placeholder = st.session_state.user_input
48
  else:
49
  placeholder = st.empty()
 
43
  )
44
 
45
  # Define the placeholder globally (outside columns)
46
+ if st.session_state and st.session_state.user_input:
47
  placeholder = st.session_state.user_input
48
  else:
49
  placeholder = st.empty()