From 9b352eaf800ac60a4f0b337749549fc6f9d44ed9 Mon Sep 17 00:00:00 2001 From: Samuel Sloniker Date: Fri, 5 May 2023 18:37:25 -0700 Subject: [PATCH] Format code --- adsms.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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), )