refactor: Replace six.StringIO by io.StringIO

This commit is contained in:
Takeshi KOMIYA
2018-12-15 20:03:39 +09:00
parent a1e845d964
commit fd1dd13a50
11 changed files with 14 additions and 18 deletions

View File

@@ -11,9 +11,10 @@
import sys
import time
from io import StringIO
import pytest
from six import text_type, StringIO
from six import text_type
from sphinx import application
from sphinx.cmd import quickstart as qs