1
0
forked from VimPlug/jedi

pr.Array takes no values param anymore

This commit is contained in:
David Halter
2013-02-09 03:55:56 +01:00
parent 22a1b2397d
commit 0008531a30

View File

@@ -1034,9 +1034,9 @@ class Array(Call):
DICT = 'dict'
SET = 'set'
def __init__(self, module, start_pos, arr_type=NOARRAY, parent=None, values=None):
def __init__(self, module, start_pos, arr_type=NOARRAY, parent=None):
super(Array, self).__init__(module, None, arr_type, start_pos, parent)
self.values = values or []
self.values = []
self.keys = []
self.end_pos = None, None