diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-10-16 02:17:32 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-10-16 09:43:58 +0900 |
commit | a77f3519fa11793f939e4a28947e57df9afde793 (patch) | |
tree | 07ace712b6137c3a878ff6ab309bbefbd35397dc /sphinx/testing/util.py | |
parent | 8c56fd87479291e2e6b901d3ed44e889d27801da (diff) | |
download | sphinx-git-a77f3519fa11793f939e4a28947e57df9afde793.tar.gz |
Fix mypy violations
Diffstat (limited to 'sphinx/testing/util.py')
-rw-r--r-- | sphinx/testing/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/testing/util.py b/sphinx/testing/util.py index 24f5267b8..4c18d1c0c 100644 --- a/sphinx/testing/util.py +++ b/sphinx/testing/util.py @@ -193,7 +193,7 @@ _unicode_literals_re = re.compile(r'u(".*?")|u(\'.*?\')') def remove_unicode_literals(s): # type: (unicode) -> unicode - return _unicode_literals_re.sub(lambda x: x.group(1) or x.group(2), s) # type: ignore + return _unicode_literals_re.sub(lambda x: x.group(1) or x.group(2), s) def find_files(root, suffix=None): |