mirror of
https://github.com/rembo10/headphones.git
synced 2026-07-21 00:14:02 +01:00
Dropping trailing whitespaces
This commit is contained in:
@@ -201,7 +201,7 @@ class GazelleAPI(object):
|
||||
Returns the inbox Mailbox for the logged in user
|
||||
"""
|
||||
return Mailbox(self, 'inbox', page, sort)
|
||||
|
||||
|
||||
def get_sentbox(self, page='1', sort='unread'):
|
||||
"""
|
||||
Returns the sentbox Mailbox for the logged in user
|
||||
|
||||
@@ -58,9 +58,9 @@ class Mailbox(object):
|
||||
"""
|
||||
This class represents the logged in user's inbox/sentbox
|
||||
"""
|
||||
def __init__(self, parent_api, boxtype='inbox', page='1', sort='unread'):
|
||||
def __init__(self, parent_api, boxtype='inbox', page='1', sort='unread'):
|
||||
self.parent_api = parent_api
|
||||
self.boxtype = boxtype
|
||||
self.boxtype = boxtype
|
||||
self.current_page = page
|
||||
self.total_pages = None
|
||||
self.sort = sort
|
||||
|
||||
Reference in New Issue
Block a user