PEP8 fixes.

This commit is contained in:
Michael Lazar
2015-12-03 00:20:20 -08:00
parent a7b789bfd9
commit 5a0932f6d3
11 changed files with 10 additions and 12 deletions

View File

@@ -173,7 +173,7 @@ def test_content_subreddit_load_more(reddit, terminal):
assert content.get(50)['type'] == 'Submission'
assert len(content._submission_data) == 51
for data in islice(content.iterate(0, 1, 70), 0, 50):
for data in islice(content.iterate(0, 1), 0, 50):
assert all(k in data for k in ('object', 'n_rows', 'offset', 'type',
'index', 'title', 'split_title'))
# All text should be converted to unicode by this point