mirror of
https://github.com/davidhalter/jedi.git
synced 2026-03-05 06:34:33 +08:00
dynamic arrays are now working pretty good
This commit is contained in:
@@ -91,7 +91,7 @@ class ImportPath(object):
|
||||
if len(rest) > 1 or rest and self.is_like_search:
|
||||
scopes = []
|
||||
elif rest:
|
||||
scopes = evaluate.follow_path(iter(rest), scope)
|
||||
scopes = list(evaluate.follow_path(iter(rest), scope))
|
||||
else:
|
||||
scopes = [scope]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user