1
0
forked from VimPlug/jedi

Fix the last async issue

This commit is contained in:
Dave Halter
2018-02-28 23:47:59 +01:00
parent 2abcd0b6a6
commit cbcc95c671

View File

@@ -35,4 +35,4 @@ class AsyncGenerator(AsyncBase):
special_object_identifier = u'ASYNC_GENERATOR'
def py__aiter__(self):
return self._func_execution_context.get_yield_lazy_contexts(is_async=True)
return self.func_execution_context.get_yield_lazy_contexts(is_async=True)