3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-08-18 02:42:18 +00:00

Remove debug print

This commit is contained in:
Krystine Sherwin 2025-07-09 10:47:55 +12:00
parent 7c5c96f5ca
commit 1518168aa0
No known key found for this signature in database

View file

@ -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}")