mtyrrell commited on
Commit
9918933
1 Parent(s): e01cf86

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -1
app.py CHANGED
@@ -148,4 +148,10 @@ else:
148
 
149
 
150
  if st.button('Submit'):
151
- run_query(text, country=country)
 
 
 
 
 
 
 
148
 
149
 
150
  if st.button('Submit'):
151
+ run_query(text, country=country)
152
+
153
+ import sys
154
+ import streamlit as st
155
+
156
+ python_version = sys.version
157
+ st.text(f"Python Version: {python_version}")