From 3e8d5e1a9fe99c9725a45cf6d804bbeb6962c13f Mon Sep 17 00:00:00 2001 From: Alexey Stepanov Date: Fri, 18 May 2018 10:59:21 +0200 Subject: [PATCH] Fix mypy on python 3.5 __wrapped__ is not always present --- logwrap/_class_decorator.pyi | 1 - 1 file changed, 1 deletion(-) diff --git a/logwrap/_class_decorator.pyi b/logwrap/_class_decorator.pyi index 0dc4410..789857d 100644 --- a/logwrap/_class_decorator.pyi +++ b/logwrap/_class_decorator.pyi @@ -4,7 +4,6 @@ import typing PY3: bool class BaseDecorator: - __wrapped__: typing.Optional[typing.Callable] = ... def __init__(self, func: typing.Optional[typing.Callable]=...) -> None: ... @property