diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2017-05-07 14:09:54 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2017-05-07 14:28:41 +0900 |
commit | 579a79660e843cd86278832c9aad3fec8f8a5fb3 (patch) | |
tree | 8c8054180b4ec2a0cf05c784add2e7d85de7d406 /sphinx/util/pycompat.py | |
parent | 3b69c51897fcaea5db573e7c25ce56c03ebac5a7 (diff) | |
download | sphinx-git-579a79660e843cd86278832c9aad3fec8f8a5fb3.tar.gz |
Update type annotations for new mypy
Diffstat (limited to 'sphinx/util/pycompat.py')
-rw-r--r-- | sphinx/util/pycompat.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/util/pycompat.py b/sphinx/util/pycompat.py index 5a1fda909..6122c1697 100644 --- a/sphinx/util/pycompat.py +++ b/sphinx/util/pycompat.py @@ -79,7 +79,7 @@ if PY3: return text_type(tree) else: # no need to refactor on 2.x versions - convert_with_2to3 = None # type: ignore + convert_with_2to3 = None # htmlescape() |