MLDeveloper commited on
Commit
37b1115
·
verified ·
1 Parent(s): 1294be4

Update app.py

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