forked from VimPlug/jedi
Fixed an issue with ArrayInstances that were using name lookups, which it doesn't have.
This commit is contained in:
@@ -156,7 +156,7 @@ class set():
|
||||
yield i
|
||||
|
||||
def pop(self):
|
||||
return self.__iterable.pop()
|
||||
return list(self.__iterable)[-1]
|
||||
|
||||
def copy(self):
|
||||
return self
|
||||
|
||||
Reference in New Issue
Block a user