fschwartzer commited on
Commit
d2e8577
1 Parent(s): fba8193

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -5
app.py CHANGED
@@ -47,13 +47,12 @@ with st.sidebar:
47
  # Filter the DataFrame based on selected values
48
  filtered_df = df[(df['Instituição'] == selected_instituicao) & (df['Conta'] == selected_conta)]
49
 
50
- col1, col2, col3 = st.columns(3) # This divides the page into three equal parts
51
 
52
  # Set custom width for columns
53
- #col1_width = 400
54
- #col2_width = 400
55
- #col3_width = 400
56
- #col1, col2, col3 = st.columns([col1_width, col2_width, col3_width])
57
 
58
  # Display the Forecasts values in the first column
59
  col1.header('Valores previstos')
 
47
  # Filter the DataFrame based on selected values
48
  filtered_df = df[(df['Instituição'] == selected_instituicao) & (df['Conta'] == selected_conta)]
49
 
50
+ #col1, col2, col3 = st.columns(3) # This divides the page into three equal parts
51
 
52
  # Set custom width for columns
53
+ col1_width = 400
54
+ col2_width = 400
55
+ col1, col2, col3 = st.columns([col1_width, col2_width])
 
56
 
57
  # Display the Forecasts values in the first column
58
  col1.header('Valores previstos')