za3karia commited on
Commit
8e5a67a
·
verified ·
1 Parent(s): 9d032de

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -1,4 +1,5 @@
1
  import streamlit as st
 
2
 
3
  # Initialize session state variables if they don't exist
4
  if 'recap_period' not in st.session_state:
@@ -7,8 +8,6 @@ if 'repo_type' not in st.session_state:
7
  st.session_state['repo_type'] = 'public'
8
  if 'private_token' not in st.session_state:
9
  st.session_state['private_token'] = ''
10
- if 'selected_repo' not in st.session_state:
11
- st.session_state['selected_repo'] = ''
12
  if 'branch_option' not in st.session_state:
13
  st.session_state['branch_option'] = 'all'
14
  if 'selected_branches' not in st.session_state:
 
1
  import streamlit as st
2
+ import reveal_slides as rs
3
 
4
  # Initialize session state variables if they don't exist
5
  if 'recap_period' not in st.session_state:
 
8
  st.session_state['repo_type'] = 'public'
9
  if 'private_token' not in st.session_state:
10
  st.session_state['private_token'] = ''
 
 
11
  if 'branch_option' not in st.session_state:
12
  st.session_state['branch_option'] = 'all'
13
  if 'selected_branches' not in st.session_state: