From 1518168aa078514bf745b0203430f899edf189d8 Mon Sep 17 00:00:00 2001 From: Krystine Sherwin <93062060+KrystalDelusion@users.noreply.github.com> Date: Wed, 9 Jul 2025 10:47:55 +1200 Subject: [PATCH] Remove debug print --- sbysrc/sby_status.py | 1 - 1 file changed, 1 deletion(-) diff --git a/sbysrc/sby_status.py b/sbysrc/sby_status.py index eaa55cb..a8fc3a1 100644 --- a/sbysrc/sby_status.py +++ b/sbysrc/sby_status.py @@ -587,5 +587,4 @@ def remove_db(path): # no other connections, delete all tables drop_script = cur.execute("SELECT name FROM sqlite_master WHERE type = 'table';").fetchall() for table in drop_script: - print(table) cur.execute(f"DROP TABLE {table}")