ajitrajasekharan commited on
Commit
0cecbda
·
1 Parent(s): 9c2f222

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -19,12 +19,12 @@ def init_session_states():
19
 
20
 
21
 
22
-
 
23
 
24
 
25
  def main():
26
- init_session_states()
27
- import easyocr
28
  st.session_state['disp'].text("Env setup up Complete")
29
  uploaded_file = st.file_uploader("Choose image file to detect text",type=['jpeg','jpg'])
30
  if uploaded_file is not None:
 
19
 
20
 
21
 
22
+ init_session_states()
23
+ import easyocr
24
 
25
 
26
  def main():
27
+
 
28
  st.session_state['disp'].text("Env setup up Complete")
29
  uploaded_file = st.file_uploader("Choose image file to detect text",type=['jpeg','jpg'])
30
  if uploaded_file is not None: