diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-12-15 20:03:39 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-12-15 21:00:38 +0900 |
commit | fd1dd13a508900b17dc99f9c66a554e2d06bed09 (patch) | |
tree | 34e0c181eb247a61047bf2a319138c00f1d813fa /tests/roots/test-root/autodoc_target.py | |
parent | a1e845d964d3c6a4bc60c1676d97c7d24e434919 (diff) | |
download | sphinx-git-fd1dd13a508900b17dc99f9c66a554e2d06bed09.tar.gz |
refactor: Replace six.StringIO by io.StringIO
Diffstat (limited to 'tests/roots/test-root/autodoc_target.py')
-rw-r--r-- | tests/roots/test-root/autodoc_target.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/roots/test-root/autodoc_target.py b/tests/roots/test-root/autodoc_target.py index c18e093ee..6aaf9ee16 100644 --- a/tests/roots/test-root/autodoc_target.py +++ b/tests/roots/test-root/autodoc_target.py @@ -1,8 +1,7 @@ # -*- coding: utf-8 -*- import enum - -from six import StringIO +from io import StringIO __all__ = ['Class'] |