cyberandy commited on
Commit
d1771ae
1 Parent(s): a69a5e2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -8,12 +8,6 @@ import logging
8
  logging.basicConfig(level=logging.INFO)
9
  logger = logging.getLogger(__name__)
10
 
11
- # Custom CSS to make the progress bar larger
12
- def local_css(file_name):
13
- with open(file_name) as f:
14
- st.markdown(f'<style>{f.read()}</style>', unsafe_allow_html=True)
15
-
16
- local_css("style.css")
17
 
18
  # Define fact_check_statement function here...
19
  def fact_check_statement(query, api_key):
@@ -56,6 +50,12 @@ st.set_page_config(
56
  }
57
  )
58
 
 
 
 
 
 
 
59
  # Sidebar
60
  st.sidebar.image("logo-wordlift.png")
61
 
 
8
  logging.basicConfig(level=logging.INFO)
9
  logger = logging.getLogger(__name__)
10
 
 
 
 
 
 
 
11
 
12
  # Define fact_check_statement function here...
13
  def fact_check_statement(query, api_key):
 
50
  }
51
  )
52
 
53
+ # Custom CSS to make the progress bar larger
54
+ def local_css(file_name):
55
+ with open(file_name) as f:
56
+ st.markdown(f'<style>{f.read()}</style>', unsafe_allow_html=True)
57
+ local_css("style.css")
58
+
59
  # Sidebar
60
  st.sidebar.image("logo-wordlift.png")
61