mirror of https://github.com/explosion/spaCy.git
Remove print statement
This commit is contained in:
parent
fc4204a12a
commit
5489b49203
|
@ -43,7 +43,6 @@ cdef class Vectors:
|
||||||
key = self.strings.add(key)
|
key = self.strings.add(key)
|
||||||
i = self.key2i[key]
|
i = self.key2i[key]
|
||||||
self.data[i] = vector
|
self.data[i] = vector
|
||||||
print("Set", i, vector)
|
|
||||||
|
|
||||||
def __iter__(self):
|
def __iter__(self):
|
||||||
yield from self.data
|
yield from self.data
|
||||||
|
|
Loading…
Reference in New Issue