mirror of https://github.com/explosion/spaCy.git
Fix logic in rules+model entity example [ci skip] (#4510)
This commit is contained in:
parent
835498d24f
commit
7fc39f124c
|
@ -1137,6 +1137,8 @@ def expand_person_entities(doc):
|
|||
new_ents.append(new_ent)
|
||||
else:
|
||||
new_ents.append(ent)
|
||||
else:
|
||||
new_ents.append(ent)
|
||||
doc.ents = new_ents
|
||||
return doc
|
||||
```
|
||||
|
|
Loading…
Reference in New Issue