mirror of https://github.com/explosion/spaCy.git
Port over fix from #1070
This commit is contained in:
parent
71954d5fe7
commit
5109bba910
|
@ -437,7 +437,8 @@ cdef class Doc:
|
|||
"""
|
||||
def __get__(self):
|
||||
if 'sents' in self.user_hooks:
|
||||
return self.user_hooks['sents'](self)
|
||||
yield from self.user_hooks['sents'](self)
|
||||
return
|
||||
|
||||
if not self.is_parsed:
|
||||
raise ValueError(
|
||||
|
|
Loading…
Reference in New Issue