From 2748c52d5e2f0874460a1fdb709b09d9f6961e67 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 8 Dec 2018 19:19:28 +0900 Subject: [PATCH] Fix a mypy violation --- sphinx/locale/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/locale/__init__.py b/sphinx/locale/__init__.py index 2ee353d76..bd7e4899b 100644 --- a/sphinx/locale/__init__.py +++ b/sphinx/locale/__init__.py @@ -57,7 +57,7 @@ class _TranslationProxy(UserString): self._args = args @property - def data(self): + def data(self): # type: ignore # type: () -> unicode return self._func(*self._args)