diff --git a/jedi/evaluate/iterable.py b/jedi/evaluate/iterable.py index 1c3ce2da..6dd82f2b 100644 --- a/jedi/evaluate/iterable.py +++ b/jedi/evaluate/iterable.py @@ -492,16 +492,6 @@ class _FakeArray(SequenceLiteralContext): # TODO is this class really needed? -class ImplicitTuple(_FakeArray): - def __init__(self, evaluator, testlist): - super(ImplicitTuple, self).__init__(evaluator, testlist, 'tuple') - raise NotImplementedError - self._testlist = testlist - - def _items(self): - return self._testlist.children[::2] - - class FakeSequence(_FakeArray): def __init__(self, evaluator, array_type, lazy_context_list): """