Skip to content

Commit

Permalink
PEP8 for base.py
Browse files Browse the repository at this point in the history
  • Loading branch information
yannickulrich committed Jan 18, 2016
1 parent 420c9a7 commit cb89d67
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pyicloud/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,13 +177,12 @@ def calendar(self):
def contacts(self):
service_root = self.webservices['contacts']['url']
return ContactsService(service_root, self.session, self.params)

@property
def reminders(self):
service_root = self.webservices['reminders']['url']
return RemindersService(service_root, self.session, self.params)


def __unicode__(self):
return 'iCloud API: %s' % self.user.get('apple_id')

Expand Down

0 comments on commit cb89d67

Please sign in to comment.