Skip to content

Commit

Permalink
PEP8 compliance.
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Coddington committed Oct 6, 2014
1 parent f63e469 commit 434535f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion pyicloud/cmdline.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,6 @@ def main():
for x in contents:
print "%20s - %s" % (x, contents[x])
elif command_line.list:
# print "\n"
print "-"*30
print "Name - %s" % contents["name"]
print "Display Name - %s" % contents["deviceDisplayName"]
Expand Down
2 changes: 1 addition & 1 deletion pyicloud/services/findmyiphone.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def refresh_client(self):

for device_info in self.response['content']:
device_id = device_info['id']
if not device_id in self._devices:
if device_id not in self._devices:
self._devices[device_id] = AppleDevice(
device_info,
self.session,
Expand Down

0 comments on commit 434535f

Please sign in to comment.