1
0
forked from VimPlug/jedi

Move iterable to context/iterable.

This commit is contained in:
Dave Halter
2017-09-30 17:41:21 +02:00
parent 06b2857974
commit 16011a91af
13 changed files with 17 additions and 17 deletions

View File

@@ -234,7 +234,7 @@ def _execute_array_values(evaluator, array):
Tuples indicate that there's not just one return value, but the listed
ones. `(str, int)` means that it returns a tuple with both types.
"""
from jedi.evaluate.iterable import SequenceLiteralContext, FakeSequence
from jedi.evaluate.context.iterable import SequenceLiteralContext, FakeSequence
if isinstance(array, SequenceLiteralContext):
values = []
for lazy_context in array.py__iter__():