Fix device indexing for python3
This commit is contained in:
parent
4a0e88a32d
commit
48d3432c9c
1 changed files with 4 additions and 1 deletions
|
@ -58,7 +58,10 @@ class FindMyiPhoneServiceManager(object):
|
|||
|
||||
def __getitem__(self, key):
|
||||
if isinstance(key, int):
|
||||
key = self.keys()[key]
|
||||
if six.PY3:
|
||||
key = list(self.keys())[key]
|
||||
else:
|
||||
key = self.keys()[key]
|
||||
return self._devices[key]
|
||||
|
||||
def __getattr__(self, attr):
|
||||
|
|
Loading…
Reference in a new issue