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