From 5489b4920367b4ac6a208206faeb8fe8519b1a62 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Mon, 5 Jun 2017 13:20:41 +0200 Subject: [PATCH] Remove print statement --- spacy/vectors.pyx | 1 - 1 file changed, 1 deletion(-) diff --git a/spacy/vectors.pyx b/spacy/vectors.pyx index 6ef1721e2..35d4d17ab 100644 --- a/spacy/vectors.pyx +++ b/spacy/vectors.pyx @@ -43,7 +43,6 @@ cdef class Vectors: key = self.strings.add(key) i = self.key2i[key] self.data[i] = vector - print("Set", i, vector) def __iter__(self): yield from self.data