nishantguvvada commited on
Commit
d7f8bf9
·
verified ·
1 Parent(s): 79b8bb9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -4
app.py CHANGED
@@ -12,14 +12,12 @@ st.set_page_config(
12
  }
13
  )
14
 
15
- #creating session states
16
- create_session_state()
17
 
18
- image = Image.open('./image/title.jpg')
19
  st.image(image)
20
 
21
  with st.sidebar:
22
- image = Image.open('./image/sidebar_image.jpg')
23
  st.image(image)
24
  st.markdown("<h2 style='text-align: center; color: red;'>Settings Tab</h2>", unsafe_allow_html=True)
25
 
 
12
  }
13
  )
14
 
 
 
15
 
16
+ image = Image.open('./title.jpg')
17
  st.image(image)
18
 
19
  with st.sidebar:
20
+ image = Image.open('./sidebar_image.jpg')
21
  st.image(image)
22
  st.markdown("<h2 style='text-align: center; color: red;'>Settings Tab</h2>", unsafe_allow_html=True)
23