1
0
forked from VimPlug/jedi

Fix issues in Python 2.7.

This commit is contained in:
Dave Halter
2015-12-10 17:20:21 +01:00
parent a1410de9e8
commit 8d3be10270
3 changed files with 3 additions and 4 deletions

View File

@@ -35,7 +35,7 @@ Inherited().undefined
class SetattrCls():
def __init__(self, dct):
# Jedi doesn't even try to understand such code
for k, v in dct:
for k, v in dct.items():
setattr(self, k, v)
self.defined = 3