mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-13 13:17:06 +03:00
12 lines
187 B
Python
12 lines
187 B
Python
|
# coding: utf-8
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
import pytest
|
||
|
|
||
|
from ...hu import Hungarian
|
||
|
|
||
|
|
||
|
@pytest.fixture
|
||
|
def hu_tokenizer():
|
||
|
return Hungarian.Defaults.create_tokenizer()
|