awacke1 commited on
Commit
c091de5
·
1 Parent(s): 144723f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -61,4 +61,11 @@ def main():
61
 
62
  # Display state spending data
63
  st.header('State Spending')
64
- for state
 
 
 
 
 
 
 
 
61
 
62
  # Display state spending data
63
  st.header('State Spending')
64
+ for state, data in spending_data.items():
65
+ st.subheader(state)
66
+ st.write(f'{EDUCATION_ICON} Education: {data["education"]}')
67
+ st.write(f'{HEALTHCARE_ICON} Healthcare: {data["healthcare"]}')
68
+ st.write(f'{TRANSPORTATION_ICON} Transportation: {data["transportation"]}')
69
+
70
+ if name == 'main':
71
+ main()