From e17dc2db75e3505de32bcaf6dd99ce215d161e2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Bournhonesque?= Date: Thu, 16 Feb 2017 12:10:24 +0100 Subject: [PATCH] Remove useless import --- spacy/vocab.pyx | 7 ------- 1 file changed, 7 deletions(-) diff --git a/spacy/vocab.pyx b/spacy/vocab.pyx index bff3b5595..ab023c3b4 100644 --- a/spacy/vocab.pyx +++ b/spacy/vocab.pyx @@ -1,23 +1,17 @@ from __future__ import unicode_literals -from libc.stdio cimport fopen, fclose, fread, fwrite, FILE from libc.string cimport memset from libc.stdint cimport int32_t -from libc.stdint cimport uint64_t from libc.math cimport sqrt from pathlib import Path import bz2 -import io -import math import ujson as json -import tempfile import re from .lexeme cimport EMPTY_LEXEME from .lexeme cimport Lexeme from .strings cimport hash_string -from .orth cimport word_shape from .typedefs cimport attr_t from .cfile cimport CFile from .lemmatizer import Lemmatizer @@ -30,7 +24,6 @@ from . import symbols from cymem.cymem cimport Address from .serialize.packer cimport Packer from .attrs cimport PROB, LANG -from . import deprecated from . import util