nickmuchi commited on
Commit
7592736
·
verified ·
1 Parent(s): 9e36058

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -68,7 +68,7 @@ if latest_ep_button:
68
  st.sidebar.subheader("Available Podcasts Feeds")
69
  selected_podcast = st.sidebar.selectbox("Select Podcast", options=podcast_five_titles,index=None,key='podcast_selection')
70
 
71
- if selected_podcast:
72
 
73
  if 'podcast_selection' not in st.session_state:
74
  st.session_state.podcast_selection = selected_podcast
 
68
  st.sidebar.subheader("Available Podcasts Feeds")
69
  selected_podcast = st.sidebar.selectbox("Select Podcast", options=podcast_five_titles,index=None,key='podcast_selection')
70
 
71
+ if selected_podcast is not None:
72
 
73
  if 'podcast_selection' not in st.session_state:
74
  st.session_state.podcast_selection = selected_podcast