From eac5ac8426dc2b05778ff60c61ad8eb4dfa320c2 Mon Sep 17 00:00:00 2001 From: Peter Law Date: Wed, 25 Mar 2020 22:35:12 +0000 Subject: [PATCH] Update comment after refactor moved code --- jedi/inference/gradual/base.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jedi/inference/gradual/base.py b/jedi/inference/gradual/base.py index 32b321fc..198c13f0 100644 --- a/jedi/inference/gradual/base.py +++ b/jedi/inference/gradual/base.py @@ -220,7 +220,8 @@ class GenericClass(ClassMixin, DefineGenericBase): for element in value_set: if element.api_type == u'function': # Functions & methods don't have an MRO and we're not - # expecting a Callable (those are handled separately above). + # expecting a Callable (those are handled separately within + # TypingClassValueWithIndex). continue if element.is_instance():