From cfaaa5d17a92982ea361de7f3a62a2eb0c4f071b Mon Sep 17 00:00:00 2001 From: termite Date: Mon, 27 Jan 2025 15:57:44 -0800 Subject: [PATCH] Removed auto database deletion on restart --- db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db.py b/db.py index 840e8a6..141934b 100644 --- a/db.py +++ b/db.py @@ -9,7 +9,7 @@ def create_table(): try: # please remove this later, # it just removes the database for testing - pathlib.Path.unlink("./stats.db") + #pathlib.Path.unlink("./stats.db") conn = sqlite3.connect('stats.db') cursor = conn.cursor()