Merge pull request #16 from etataurov/py3keysindexing
Devices indexing doesn't work on python3
This commit is contained in:
commit
d86efc04b1
1 changed files with 4 additions and 1 deletions
|
@ -58,6 +58,9 @@ class FindMyiPhoneServiceManager(object):
|
|||
|
||||
def __getitem__(self, key):
|
||||
if isinstance(key, int):
|
||||
if six.PY3:
|
||||
key = list(self.keys())[key]
|
||||
else:
|
||||
key = self.keys()[key]
|
||||
return self._devices[key]
|
||||
|
||||
|
|
Loading…
Reference in a new issue