Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -118,6 +118,8 @@ def create_notebook(file, tc, bc):
|
|
118 |
# Crop the page
|
119 |
cropped_page = page.within_bbox(crop_box)
|
120 |
text = cropped_page.extract_text()
|
|
|
|
|
121 |
# Split the text into lines
|
122 |
# lines = text.split('\n')
|
123 |
blocks = classify_page(text)
|
|
|
118 |
# Crop the page
|
119 |
cropped_page = page.within_bbox(crop_box)
|
120 |
text = cropped_page.extract_text()
|
121 |
+
if not text:
|
122 |
+
continue()
|
123 |
# Split the text into lines
|
124 |
# lines = text.split('\n')
|
125 |
blocks = classify_page(text)
|