Format code

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

View File

@ -1,6 +1,6 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
# Partially written with ChatGPT # Partially written with ChatGPT
import os import os
import time import time
@ -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),
) )