forked from VimPlug/jedi
pr.Array takes no values param anymore
This commit is contained in:
@@ -1034,9 +1034,9 @@ class Array(Call):
|
|||||||
DICT = 'dict'
|
DICT = 'dict'
|
||||||
SET = 'set'
|
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)
|
super(Array, self).__init__(module, None, arr_type, start_pos, parent)
|
||||||
self.values = values or []
|
self.values = []
|
||||||
self.keys = []
|
self.keys = []
|
||||||
self.end_pos = None, None
|
self.end_pos = None, None
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user