Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -193,7 +193,7 @@ class CombinedProcessor:
|
|
193 |
if entity_group != 'None':
|
194 |
if entity_group in bibtex_data:
|
195 |
print(entity_group)
|
196 |
-
if entity_group == "
|
197 |
bibtex_data[entity_group] += ', ' + word
|
198 |
else:
|
199 |
bibtex_data[entity_group] += ' ' + word
|
@@ -202,7 +202,7 @@ class CombinedProcessor:
|
|
202 |
current_entity = entity_group
|
203 |
else:
|
204 |
if current_entity:
|
205 |
-
if current_entity == "
|
206 |
bibtex_data[current_entity] += ', ' + word
|
207 |
else:
|
208 |
bibtex_data[current_entity] += ' ' + word
|
|
|
193 |
if entity_group != 'None':
|
194 |
if entity_group in bibtex_data:
|
195 |
print(entity_group)
|
196 |
+
if entity_group == "author":
|
197 |
bibtex_data[entity_group] += ', ' + word
|
198 |
else:
|
199 |
bibtex_data[entity_group] += ' ' + word
|
|
|
202 |
current_entity = entity_group
|
203 |
else:
|
204 |
if current_entity:
|
205 |
+
if current_entity == "author":
|
206 |
bibtex_data[current_entity] += ', ' + word
|
207 |
else:
|
208 |
bibtex_data[current_entity] += ' ' + word
|