From 33229b1c9ef53a49a3bbd00d61ca02c28c5481c8 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Fri, 20 Oct 2017 14:19:29 +0200 Subject: [PATCH] Remove print statement --- spacy/vocab.pyx | 1 - 1 file changed, 1 deletion(-) diff --git a/spacy/vocab.pyx b/spacy/vocab.pyx index e6ba9944b..2e189a02b 100644 --- a/spacy/vocab.pyx +++ b/spacy/vocab.pyx @@ -63,7 +63,6 @@ cdef class Vocab: for string in strings: _ = self[string] self.lex_attr_getters = lex_attr_getters - print("Create morphology", list(self.strings), tag_map) self.morphology = Morphology(self.strings, tag_map, lemmatizer) self.vectors = Vectors(self.strings, width=0)