Spaces:
Sleeping
Sleeping
Commit
·
7a2d2c8
1
Parent(s):
bdcb7b5
Update app.py
Browse files
app.py
CHANGED
@@ -153,7 +153,8 @@ if paste_data:
|
|
153 |
st.session_state.row_count = row_count
|
154 |
|
155 |
for i, url_question in enumerate(urls_questions):
|
156 |
-
|
|
|
157 |
st.session_state[f"url{i}"] = url_question[0]
|
158 |
st.session_state[f"question{i}"] = url_question[1]
|
159 |
else:
|
|
|
153 |
st.session_state.row_count = row_count
|
154 |
|
155 |
for i, url_question in enumerate(urls_questions):
|
156 |
+
print(url_question) # Debug line
|
157 |
+
if len(url_question) >= 2:
|
158 |
st.session_state[f"url{i}"] = url_question[0]
|
159 |
st.session_state[f"question{i}"] = url_question[1]
|
160 |
else:
|