This commit is contained in:
Ines Montani 2017-01-12 02:16:37 +01:00
parent ae7edd30e7
commit 8fecedac3a
3 changed files with 9 additions and 5 deletions

View File

@ -1,3 +1,6 @@
# coding: utf-8
from __future__ import unicode_literals
from ...attrs import *

View File

@ -1,11 +1,10 @@
# -*- coding: utf-8 -*-
# coding: utf-8
from __future__ import unicode_literals
import pytest
import numpy
from spacy.attrs import HEAD, DEP
from ...attrs import HEAD, DEP
@pytest.mark.models

View File

@ -1,10 +1,12 @@
# coding: utf-8
from __future__ import unicode_literals
import pytest
import re
from ...vocab import Vocab
from ...tokenizer import Tokenizer
import re
import pytest
@pytest.fixture
def vocab():