mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-26 18:06:29 +03:00
Fix not implemented Span getters
This commit is contained in:
parent
544a407b93
commit
d2df81d907
|
@ -475,6 +475,7 @@ cdef class Span:
|
||||||
span, in the syntactic dependency parse.
|
span, in the syntactic dependency parse.
|
||||||
"""
|
"""
|
||||||
# TODO: implement
|
# TODO: implement
|
||||||
|
def __get__(self):
|
||||||
raise NotImplementedError()
|
raise NotImplementedError()
|
||||||
|
|
||||||
property n_rights:
|
property n_rights:
|
||||||
|
@ -482,6 +483,7 @@ cdef class Span:
|
||||||
span, in the syntactic dependency parse.
|
span, in the syntactic dependency parse.
|
||||||
"""
|
"""
|
||||||
# TODO: implement
|
# TODO: implement
|
||||||
|
def __get__(self):
|
||||||
raise NotImplementedError()
|
raise NotImplementedError()
|
||||||
|
|
||||||
property subtree:
|
property subtree:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user