1
0
forked from VimPlug/jedi

More issues from the list of types to set of types conversion.

This commit is contained in:
Dave Halter
2015-10-30 10:32:17 +01:00
parent 05798734bf
commit ee51b0a62f
3 changed files with 5 additions and 5 deletions

View File

@@ -194,7 +194,7 @@ class CompiledObject(Base):
if not result:
try:
for obj in self.obj:
result.append(CompiledObject(obj))
result.add(CompiledObject(obj))
except TypeError:
pass # self.obj maynot have an __iter__ method.
return result