Format code

This commit is contained in:
Samuel Sloniker 2023-05-05 18:37:25 -07:00
parent 1adbb8fa0c
commit 9b352eaf80

View File

@ -28,7 +28,8 @@ def load_database(config):
def update_last_seen_time(con, sub_id): def update_last_seen_time(con, sub_id):
con.execute( con.execute(
"UPDATE subscriptions SET last_seen = ? WHERE rowid = ?", (time.time(), sub_id) "UPDATE subscriptions SET last_seen = ? WHERE rowid = ?",
(time.time(), sub_id),
) )