* Fix spans.lemma_

This commit is contained in:
Matthew Honnibal 2015-03-26 03:45:11 +01:00
parent f4cc222ec3
commit 5f2a4ff36d

View File

@ -132,7 +132,7 @@ cdef class Span:
property lemma_: property lemma_:
def __get__(self): def __get__(self):
return self.orth_ return ' '.join([t.lemma_ for t in self]).strip()
property label_: property label_:
def __get__(self): def __get__(self):