mohamedrady commited on
Commit
1eef0d0
·
verified ·
1 Parent(s): 97c4d3e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -60,7 +60,7 @@ def nltk_extract_quotes(text):
60
  quotes = []
61
  sentences = nltk.tokenize.sent_tokenize(text, language='arabic')
62
  for sentence in sentences:
63
- if '"' in sentence or '«' في sentence or '»' في sentence:
64
  quotes.append(sentence)
65
  return quotes
66
 
 
60
  quotes = []
61
  sentences = nltk.tokenize.sent_tokenize(text, language='arabic')
62
  for sentence in sentences:
63
+ if '"' in sentence or '«' in sentence or '»' in sentence:
64
  quotes.append(sentence)
65
  return quotes
66