Skip to content

Commit

Permalink
Fix flake8 errors
Browse files Browse the repository at this point in the history
E231 missing whitespace after ','
F401 'datetime.date' imported but unused
  • Loading branch information
koenrh committed Sep 13, 2019
1 parent 3567df3 commit 248a317
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test_deletetweets.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import unittest

from datetime import date
from deletetweets import TweetReader


Expand Down Expand Up @@ -76,7 +75,7 @@ def test_tweet_reader_spare(self):
expected = [{"id_str": "21"}, {"id_str": "22"}]

for idx, val in enumerate(TweetReader(FakeReader(tweets),
spare=["22","23"]).read()):
spare=["22", "23"]).read()):
self.assertEqual(expected[idx]["id_str"], val["id_str"])

def test_tweet_reader_likes(self):
Expand Down

0 comments on commit 248a317

Please sign in to comment.