From 1212c7e5fdcad6e0687d5375a2633ae7c625fdab Mon Sep 17 00:00:00 2001 From: silverwizard Date: Wed, 27 Apr 2022 21:57:18 -0400 Subject: [PATCH] Made the init DB not purge itself --- shadowdice.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/shadowdice.py b/shadowdice.py index df27b4c..f28c11e 100644 --- a/shadowdice.py +++ b/shadowdice.py @@ -30,11 +30,6 @@ class Plugin(PluginBase): ) def quit(self): - init_db = sqlite3.connect('init.db') - init = init_db.cursor() - init.execute("DROP TABLE inits") - init_db.commit() - init_db.close() self.is_running = False log( INFO,