mahynski commited on
Commit
40e5f2c
·
1 Parent(s): 8eec1ee
Files changed (1) hide show
  1. app.py +7 -9
app.py CHANGED
@@ -61,14 +61,12 @@ with st.sidebar:
61
  # Parse the file
62
  pass
63
 
64
- def main():
65
- global uploaded_file
66
- col1, col2 = st.columns(2)
67
 
68
- with col1:
69
- st.write('testing')
70
 
71
- with col2:
72
- if uploaded_file is not None:
73
- # Display the pdf
74
- pdf_viewer(input=uploaded_file, width=700)
 
61
  # Parse the file
62
  pass
63
 
64
+ col1, col2 = st.columns(2)
 
 
65
 
66
+ with col1:
67
+ st.write('testing')
68
 
69
+ with col2:
70
+ if uploaded_file is not None:
71
+ # Display the pdf
72
+ pdf_viewer(input=uploaded_file, width=700)