Update app.py
Browse files
app.py
CHANGED
@@ -13,7 +13,7 @@ def find_abstract(input_text):
|
|
13 |
count=0
|
14 |
for item in input_text.split("\n\n"):
|
15 |
count=count+1
|
16 |
-
if item=="
|
17 |
break
|
18 |
return count
|
19 |
|
|
|
13 |
count=0
|
14 |
for item in input_text.split("\n\n"):
|
15 |
count=count+1
|
16 |
+
if item.lower()=="abstract":
|
17 |
break
|
18 |
return count
|
19 |
|