Skip to content

Commit

Permalink
Applied Black
Browse files Browse the repository at this point in the history
  • Loading branch information
simonw committed Mar 21, 2020
1 parent 36e8ffc commit b08037e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions hacker_news_to_sqlite/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,7 @@ def trees(db_path, item_ids):
except sqlite_utils.db.NotFoundError:
pass
item_url = "https://hacker-news.firebaseio.com/v0/item/{}.json".format(id)
item = requests.get(
item_url
).json()
item = requests.get(item_url).json()
done_count += 1
if item is None:
continue
Expand Down

0 comments on commit b08037e

Please sign in to comment.