Update app.py
Browse files
app.py
CHANGED
|
@@ -32,13 +32,8 @@ with st.form("solar_form"):
|
|
| 32 |
state_options = df['State'].dropna().unique()
|
| 33 |
location = st.selectbox("Select your State", options=sorted(state_options))
|
| 34 |
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
# Bolded Rooftop Solar title
|
| 38 |
-
st.markdown("### **Rooftop Solar**"),
|
| 39 |
-
index=0,
|
| 40 |
-
disabled=True
|
| 41 |
-
)
|
| 42 |
|
| 43 |
roof_size = st.number_input("Enter your roof size (in sq meters)", min_value=1)
|
| 44 |
electricity_bill = st.number_input("Enter your monthly electricity bill (₹)", min_value=0)
|
|
|
|
| 32 |
state_options = df['State'].dropna().unique()
|
| 33 |
location = st.selectbox("Select your State", options=sorted(state_options))
|
| 34 |
|
| 35 |
+
# Fixed line: showing only bolded "Rooftop Solar" heading
|
| 36 |
+
st.markdown("### **Rooftop Solar**")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
|
| 38 |
roof_size = st.number_input("Enter your roof size (in sq meters)", min_value=1)
|
| 39 |
electricity_bill = st.number_input("Enter your monthly electricity bill (₹)", min_value=0)
|