mirror of https://github.com/explosion/spaCy.git
`Docs`: Fix rule-based matching example that expands named entities (#12495)
This commit is contained in:
parent
c95d320d28
commit
6db20b354f
|
@ -1684,6 +1684,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