Sina Media Lab commited on
Commit
a1b650a
·
1 Parent(s): 97a8822
Files changed (2) hide show
  1. app.py +1 -1
  2. modules/__init__.py +1 -0
app.py CHANGED
@@ -112,7 +112,7 @@ if module_name:
112
  st.error("❌ Incorrect.")
113
  st.write(f"**Explanation:** {st.session_state.explanation}")
114
  st.session_state.current_question = None
115
- st.experimental_rerun()
116
 
117
  if st.session_state.submitted and st.session_state.question_count > 0:
118
  with col3:
 
112
  st.error("❌ Incorrect.")
113
  st.write(f"**Explanation:** {st.session_state.explanation}")
114
  st.session_state.current_question = None
115
+ st.experimental_set_query_params(dummy_param=True)
116
 
117
  if st.session_state.submitted and st.session_state.question_count > 0:
118
  with col3:
modules/__init__.py ADDED
@@ -0,0 +1 @@
 
 
1
+ # This file can be left empty or used to import specific functions or variables from the module files.