1
0
forked from VimPlug/jedi

Move all Name classes to a separate file

This commit is contained in:
Dave Halter
2019-05-07 00:30:16 +02:00
parent ad48ec4cfd
commit 895eae1d54
19 changed files with 180 additions and 170 deletions

View File

@@ -205,7 +205,7 @@ class ContextWrapper(HelperContextMixin, object):
@safe_property
def name(self):
from jedi.evaluate.filters import ContextName
from jedi.evaluate.names import ContextName
wrapped_name = self._wrapped_context.name
if wrapped_name.tree_name is not None:
return ContextName(self, wrapped_name.tree_name)