Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -380,9 +380,9 @@ def find_rss():
|
|
| 380 |
td_phrases=td.noun_phrases
|
| 381 |
|
| 382 |
nouns=tt_nouns+td_nouns
|
| 383 |
-
tdd_phrases=[x for x in td.noun_phrases if x[1]=='NN'
|
| 384 |
|
| 385 |
-
ttt_phrases=[x for x in tt.noun_phrases if x[1]=='NN'
|
| 386 |
phrases=ttt_phrases+tdd_phrases
|
| 387 |
lods = {"title":r_title, "description":r_description,"link":r_link, "nouns":nouns, "noun_phrases":phrases}
|
| 388 |
except Exception as e:
|
|
|
|
| 380 |
td_phrases=td.noun_phrases
|
| 381 |
|
| 382 |
nouns=tt_nouns+td_nouns
|
| 383 |
+
tdd_phrases=[x for x in td.noun_phrases if x[1]=='NN']
|
| 384 |
|
| 385 |
+
ttt_phrases=[x for x in tt.noun_phrases if x[1]=='NN']
|
| 386 |
phrases=ttt_phrases+tdd_phrases
|
| 387 |
lods = {"title":r_title, "description":r_description,"link":r_link, "nouns":nouns, "noun_phrases":phrases}
|
| 388 |
except Exception as e:
|