Thomas Dehaene commited on
Commit
b3f5232
·
1 Parent(s): 8cbeb77

Update streamlit

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -6,14 +6,13 @@ import subprocess
6
  import sys
7
  import logging
8
  import importlib
9
- import streamlit
10
 
11
  def install():
12
  subprocess.check_call([sys.executable, "-m", "pip", "install", "streamlit==0.89.0"])
13
 
14
  install()
 
15
 
16
- importlib.reload(streamlit)
17
  logging.warning(streamlit.__version__)
18
 
19
 
 
6
  import sys
7
  import logging
8
  import importlib
 
9
 
10
  def install():
11
  subprocess.check_call([sys.executable, "-m", "pip", "install", "streamlit==0.89.0"])
12
 
13
  install()
14
+ import streamlit
15
 
 
16
  logging.warning(streamlit.__version__)
17
 
18