Spaces:
Runtime error
Runtime error
Timothyxxx
commited on
Commit
·
340859a
1
Parent(s):
cf22e71
Make the cols wider
Browse files
app.py
CHANGED
@@ -244,7 +244,7 @@ try:
|
|
244 |
for idx in range(len(header)):
|
245 |
if header[idx].startswith('col_'):
|
246 |
header[idx] = step
|
247 |
-
st.dataframe(pd.DataFrame(pd.DataFrame(rows, columns=header)))
|
248 |
else:
|
249 |
st.markdown(result_in_this_step)
|
250 |
with st.spinner('...'):
|
|
|
244 |
for idx in range(len(header)):
|
245 |
if header[idx].startswith('col_'):
|
246 |
header[idx] = step
|
247 |
+
st.dataframe(pd.DataFrame(pd.DataFrame(rows, columns=header)), use_container_width=True)
|
248 |
else:
|
249 |
st.markdown(result_in_this_step)
|
250 |
with st.spinner('...'):
|