diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-10-16 09:56:40 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-16 09:56:40 +0900 |
commit | be2b86cc15a2f5fca1581c25ebf2db9a189dbc41 (patch) | |
tree | 07ace712b6137c3a878ff6ab309bbefbd35397dc /sphinx/testing/util.py | |
parent | 8c56fd87479291e2e6b901d3ed44e889d27801da (diff) | |
parent | a77f3519fa11793f939e4a28947e57df9afde793 (diff) | |
download | sphinx-git-be2b86cc15a2f5fca1581c25ebf2db9a189dbc41.tar.gz |
Merge pull request #5537 from tk0miya/mypy-0.641
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): |