mirror of
https://github.com/explosion/spaCy.git
synced 2025-01-09 16:58:17 +03:00
06d8c3a20f
This reverts commitc8bb08b545
, reversing changes made tob6a509a8d1
.
9 lines
161 B
Python
9 lines
161 B
Python
# coding: utf8
|
|
from __future__ import unicode_literals
|
|
|
|
from .doc import Doc
|
|
from .token import Token
|
|
from .span import Span
|
|
|
|
__all__ = ["Doc", "Token", "Span"]
|