From 800f6eb84b35e5c600eb7b2a887e7913a9cae550 Mon Sep 17 00:00:00 2001 From: David Halter Date: Mon, 10 Dec 2012 20:20:39 +0100 Subject: [PATCH] bugfix for the latest patch --- jedi/parsing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jedi/parsing.py b/jedi/parsing.py index 942f329c..d56f7ae5 100644 --- a/jedi/parsing.py +++ b/jedi/parsing.py @@ -1027,7 +1027,7 @@ class Array(Call): if self.type in (Array.LIST, Array.TUPLE): return # these are basically code errors, just ignore self.keys.append(self.values.pop()) - if self.type == Array.DICT: + if self.type == Array.SET: self.type = Array.DICT self.values.append([])