Spaces:
Sleeping
Sleeping
fix filename
Browse files
app.py
CHANGED
|
@@ -33,7 +33,9 @@ if uploaded_file is not None:
|
|
| 33 |
if not file.endswith('.pdf'):
|
| 34 |
st.write(f"The other file in the 'uploads' folder is: {file}")
|
| 35 |
break
|
| 36 |
-
|
|
|
|
|
|
|
| 37 |
outline = monkeyReader.readOutline(folder_path + file)
|
| 38 |
|
| 39 |
for pre, fill, node in outline:
|
|
|
|
| 33 |
if not file.endswith('.pdf'):
|
| 34 |
st.write(f"The other file in the 'uploads' folder is: {file}")
|
| 35 |
break
|
| 36 |
+
|
| 37 |
+
|
| 38 |
+
monkeyReader = reader.MonkeyReader('monkey')
|
| 39 |
outline = monkeyReader.readOutline(folder_path + file)
|
| 40 |
|
| 41 |
for pre, fill, node in outline:
|