Spaces:
Runtime error
Runtime error
Commit
·
bf2871b
1
Parent(s):
fcc8fb8
Update app.py
Browse files
app.py
CHANGED
@@ -13,7 +13,7 @@ def init_session_states():
|
|
13 |
if 'init' not in st.session_state:
|
14 |
st.session_state['init'] = 1
|
15 |
os.system('pip install git+git://github.com/jaidedai/easyocr.git')
|
16 |
-
|
17 |
st.session_state['disp'] = st.empty()
|
18 |
st.session_state['disp'].text("Setting up environment. This will take some time...")
|
19 |
|
|
|
13 |
if 'init' not in st.session_state:
|
14 |
st.session_state['init'] = 1
|
15 |
os.system('pip install git+git://github.com/jaidedai/easyocr.git')
|
16 |
+
if 'disp' not in st.session_state:
|
17 |
st.session_state['disp'] = st.empty()
|
18 |
st.session_state['disp'].text("Setting up environment. This will take some time...")
|
19 |
|