mirror of
https://github.com/explosion/spaCy.git
synced 2026-01-11 03:01:25 +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()
|