1
0
forked from VimPlug/jedi

Fix an issue in YieldExpr.

This commit is contained in:
Dave Halter
2015-12-26 11:39:37 +01:00
parent ef3a83a74e
commit b479e157fc

View File

@@ -1319,9 +1319,8 @@ class ReturnStmt(KeywordStatement):
class YieldExpr(BaseNode):
__slots__ = ()
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
@property
def type(self):
return 'yield_expr'