diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-12-15 20:07:08 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-12-15 20:07:08 +0900 |
commit | d2e5061136d33aeef3450738adc86205bd950809 (patch) | |
tree | 9d1b17f34f048fa407ec107ded90d376a6b5018c /sphinx/util/jsonimpl.py | |
parent | aaf0046f441aab454c64c792291dd87867fd0699 (diff) | |
download | sphinx-git-d2e5061136d33aeef3450738adc86205bd950809.tar.gz |
refactor: Replace six.UserString by collections.UserString
Diffstat (limited to 'sphinx/util/jsonimpl.py')
-rw-r--r-- | sphinx/util/jsonimpl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/util/jsonimpl.py b/sphinx/util/jsonimpl.py index 557bc122f..b06d32b91 100644 --- a/sphinx/util/jsonimpl.py +++ b/sphinx/util/jsonimpl.py @@ -10,9 +10,9 @@ """ import json +from collections import UserString from six import text_type -from six.moves import UserString if False: # For type annotation |