Merge pull request #5736 from tk0miya/mypy-0.650

Fix a mypy violation
This commit is contained in:
Takeshi KOMIYA 2018-12-08 23:43:35 +09:00 committed by GitHub
commit 85d2d6da72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)