Spaces:
Sleeping
Sleeping
Commit
·
b14cbe8
1
Parent(s):
008be14
Update app.py
Browse files
app.py
CHANGED
@@ -152,7 +152,7 @@ if paste_data:
|
|
152 |
row_count = len(urls_questions)
|
153 |
st.session_state.row_count = row_count
|
154 |
|
155 |
-
for i, row in enumerate(data.
|
156 |
url_question = row.split('\t') # Splitting by tab character
|
157 |
print(url_question) # Debug line
|
158 |
if len(url_question) >= 2:
|
|
|
152 |
row_count = len(urls_questions)
|
153 |
st.session_state.row_count = row_count
|
154 |
|
155 |
+
for i, row in enumerate(data.readlines()):
|
156 |
url_question = row.split('\t') # Splitting by tab character
|
157 |
print(url_question) # Debug line
|
158 |
if len(url_question) >= 2:
|