summaryrefslogtreecommitdiff
path: root/sphinx/testing/util.py
diff options
context:
space:
mode:
Diffstat (limited to 'sphinx/testing/util.py')
-rw-r--r--sphinx/testing/util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/testing/util.py b/sphinx/testing/util.py
index bfa12ece8..b34fd504b 100644
--- a/sphinx/testing/util.py
+++ b/sphinx/testing/util.py
@@ -99,7 +99,7 @@ def etree_parse(path):
# type: (unicode) -> Any
with warnings.catch_warnings(record=False):
warnings.filterwarnings("ignore", category=DeprecationWarning)
- return ElementTree.parse(path) # type: ignore
+ return ElementTree.parse(path)
class Struct: