Skip to content

Commit c91677e

Browse files
committed
Ran Black
1 parent f50cad4 commit c91677e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

swarm_to_sqlite/utils.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,9 @@ def save_checkin(checkin, db):
4949
checkin["created"] = datetime.datetime.utcfromtimestamp(
5050
checkin["createdAt"]
5151
).isoformat()
52-
checkin["source"] = db["sources"].lookup(checkin["source"]) if "source" in checkin else None
52+
checkin["source"] = (
53+
db["sources"].lookup(checkin["source"]) if "source" in checkin else None
54+
)
5355
users_with = checkin.pop("with", None) or []
5456
users_likes = []
5557
for group in checkin["likes"]["groups"]:

0 commit comments

Comments
 (0)