MLDeveloper commited on
Commit
7bb32f1
·
verified ·
1 Parent(s): 68c59ae

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -7
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
- st.radio(
36
- "Select Solar Project Type",
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)