Remove _is_annotated flag from annotate decorator

This commit is contained in:
Syrus Akbary 2017-07-23 23:30:56 -07:00
parent 0e355ee296
commit df58b9a48b

View File

@ -33,5 +33,4 @@ def annotate(_func=None, _trigger_warning=True, **annotations):
else: else:
_func.__annotations__.update(annotations) _func.__annotations__.update(annotations)
_func._is_annotated = True
return _func return _func