We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f50cad4 commit c91677eCopy full SHA for c91677e
swarm_to_sqlite/utils.py
@@ -49,7 +49,9 @@ def save_checkin(checkin, db):
49
checkin["created"] = datetime.datetime.utcfromtimestamp(
50
checkin["createdAt"]
51
).isoformat()
52
- checkin["source"] = db["sources"].lookup(checkin["source"]) if "source" in checkin else None
+ checkin["source"] = (
53
+ db["sources"].lookup(checkin["source"]) if "source" in checkin else None
54
+ )
55
users_with = checkin.pop("with", None) or []
56
users_likes = []
57
for group in checkin["likes"]["groups"]:
0 commit comments