From a54abd760c2531ffaa205b4502ac56bacf0e2920 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 15 Jul 2018 14:55:22 +0900 Subject: [PATCH] Fix mypy violations --- sphinx/testing/path.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/testing/path.py b/sphinx/testing/path.py index 209046246..585933499 100644 --- a/sphinx/testing/path.py +++ b/sphinx/testing/path.py @@ -223,7 +223,7 @@ class path(text_type): """ Joins the path with the argument given and returns the result. """ - return self.__class__(os.path.join(self, *map(self.__class__, args))) # type: ignore # NOQA + return self.__class__(os.path.join(self, *map(self.__class__, args))) def listdir(self): # type: () -> List[unicode]