Lenylvt commited on
Commit
60a212f
·
verified ·
1 Parent(s): c322699

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -161,7 +161,7 @@ if submitted or 'dictee' in st.session_state:
161
  if st.button("📝 Correction", key="submit_correction"):
162
  st.session_state.correction = correction_dictee(dictee, dictee_user)
163
 
164
- if st.session_state.correction:
165
  st.divider()
166
  st.markdown("### 🎉 Voici la correction (*Par IA*) :")
167
  st.markdown(st.session_state.correction)
 
161
  if st.button("📝 Correction", key="submit_correction"):
162
  st.session_state.correction = correction_dictee(dictee, dictee_user)
163
 
164
+ if 'correction' in st.session_state:
165
  st.divider()
166
  st.markdown("### 🎉 Voici la correction (*Par IA*) :")
167
  st.markdown(st.session_state.correction)