Anne31415 commited on
Commit
0da8351
1 Parent(s): 6a479ca

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -166,7 +166,7 @@ def main():
166
  <div class="question-box" id="question3">Was sind die Vorteile des ambulanten operierens?</div>
167
  """, unsafe_allow_html=True)
168
 
169
- st.markdown("""
170
  <script>
171
  document.getElementById('question1').onclick = function() {
172
  console.log('Question 1 box clicked');
@@ -180,6 +180,8 @@ def main():
180
  </script>
181
  """, unsafe_allow_html=True)
182
 
 
 
183
 
184
 
185
 
 
166
  <div class="question-box" id="question3">Was sind die Vorteile des ambulanten operierens?</div>
167
  """, unsafe_allow_html=True)
168
 
169
+ st.markdown("""
170
  <script>
171
  document.getElementById('question1').onclick = function() {
172
  console.log('Question 1 box clicked');
 
180
  </script>
181
  """, unsafe_allow_html=True)
182
 
183
+ if __name__ == "__main__":
184
+ main()
185
 
186
 
187