diff --git a/jedi/parser/python/tree.py b/jedi/parser/python/tree.py index 75b9834c..1f936508 100644 --- a/jedi/parser/python/tree.py +++ b/jedi/parser/python/tree.py @@ -533,11 +533,6 @@ class Lambda(Function): # lambda functions do not support annotations return None - @property - def yields(self): - # TODO rename - return [] - def __repr__(self): return "<%s@%s>" % (self.__class__.__name__, self.start_pos)