fschwartzer commited on
Commit
cdcda6d
1 Parent(s): 78b5466

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -100,8 +100,7 @@ else:
100
  col2.warning('No data available for the selected filters.')
101
 
102
  # Create a table in the third column
103
- col3 = st.column()
104
- col3.header('Tabela com previsões')
105
 
106
  if not filtered_df.empty:
107
  data_string = filtered_df['Forecasts'].iloc[0]
 
100
  col2.warning('No data available for the selected filters.')
101
 
102
  # Create a table in the third column
103
+ col3 = st.columns(1) # You can use st.columns(1) to create a single column layout
 
104
 
105
  if not filtered_df.empty:
106
  data_string = filtered_df['Forecasts'].iloc[0]