diff --git a/adsms.py b/adsms.py index 0f64492..9cc2813 100755 --- a/adsms.py +++ b/adsms.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 -# Partially written with ChatGPT +# Partially written with ChatGPT import os import time @@ -28,7 +28,8 @@ def load_database(config): def update_last_seen_time(con, sub_id): con.execute( - "UPDATE subscriptions SET last_seen = ? WHERE rowid = ?", (time.time(), sub_id) + "UPDATE subscriptions SET last_seen = ? WHERE rowid = ?", + (time.time(), sub_id), )