Spaces:
Runtime error
Runtime error
Commit
·
3543580
1
Parent(s):
570c67b
update
Browse files- app/main.py +1 -1
app/main.py
CHANGED
@@ -183,7 +183,7 @@ class App:
|
|
183 |
st.warning("Please select a column to process")
|
184 |
return
|
185 |
|
186 |
-
df_process = data[ques]
|
187 |
self.csv_input = data
|
188 |
self.csv_process = df_process
|
189 |
|
|
|
183 |
st.warning("Please select a column to process")
|
184 |
return
|
185 |
|
186 |
+
df_process = data[ques].astype(str)
|
187 |
self.csv_input = data
|
188 |
self.csv_process = df_process
|
189 |
|