PEP8 for base.py
This commit is contained in:
parent
420c9a783c
commit
cb89d678cf
1 changed files with 1 additions and 2 deletions
|
@ -177,13 +177,12 @@ class PyiCloudService(object):
|
||||||
def contacts(self):
|
def contacts(self):
|
||||||
service_root = self.webservices['contacts']['url']
|
service_root = self.webservices['contacts']['url']
|
||||||
return ContactsService(service_root, self.session, self.params)
|
return ContactsService(service_root, self.session, self.params)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def reminders(self):
|
def reminders(self):
|
||||||
service_root = self.webservices['reminders']['url']
|
service_root = self.webservices['reminders']['url']
|
||||||
return RemindersService(service_root, self.session, self.params)
|
return RemindersService(service_root, self.session, self.params)
|
||||||
|
|
||||||
|
|
||||||
def __unicode__(self):
|
def __unicode__(self):
|
||||||
return 'iCloud API: %s' % self.user.get('apple_id')
|
return 'iCloud API: %s' % self.user.get('apple_id')
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue