Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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()
|