PEP8 tweaks.

This commit is contained in:
Erik Johnston 2014-08-27 14:19:39 +01:00
parent 47519cd8c2
commit 77a255c7c3
5 changed files with 12 additions and 10 deletions

View file

@ -27,7 +27,9 @@ class PaginationConfig(object):
"""A configuration object which stores pagination parameters."""
def __init__(self, from_tok=None, to_tok=None, direction='f', limit=0):
self.from_token = StreamToken.from_string(from_tok) if from_tok else None
self.from_token = (
StreamToken.from_string(from_tok) if from_tok else None
)
self.to_token = StreamToken.from_string(to_tok) if to_tok else None
self.direction = 'f' if direction == 'f' else 'b'
self.limit = int(limit)
@ -67,6 +69,3 @@ class PaginationConfig(object):
"<PaginationConfig from_tok=%s, to_tok=%s, "
"direction=%s, limit=%s>"
) % (self.from_tok, self.to_tok, self.direction, self.limit)