mirror of https://github.com/explosion/spaCy.git
Fix StringIO import for Python 3
This commit is contained in:
parent
69998f216b
commit
928db7e419
|
@ -13,7 +13,7 @@ from ..hu import Hungarian
|
|||
from ..tokens import Doc
|
||||
from ..attrs import ORTH, TAG, HEAD, DEP
|
||||
|
||||
from StringIO import StringIO
|
||||
from io import StringIO
|
||||
import pytest
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue