From cbcc95c67159f3e8d61699593c9f855db0630d09 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Wed, 28 Feb 2018 23:47:59 +0100 Subject: [PATCH] Fix the last async issue --- jedi/evaluate/context/asynchronous.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jedi/evaluate/context/asynchronous.py b/jedi/evaluate/context/asynchronous.py index 4a3ec8ef..51e59a48 100644 --- a/jedi/evaluate/context/asynchronous.py +++ b/jedi/evaluate/context/asynchronous.py @@ -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)