From 00acb04329056e11e01fb09680a29e72d90926d2 Mon Sep 17 00:00:00 2001 From: Donald Zou Date: Sat, 7 Dec 2024 17:05:30 +0800 Subject: [PATCH] Update dashboard.py - Disabled `EmailSender` for now --- src/dashboard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dashboard.py b/src/dashboard.py index f0b9dc3..1b9cf66 100644 --- a/src/dashboard.py +++ b/src/dashboard.py @@ -2031,7 +2031,7 @@ def sqlUpdate(statement: str, paramters: tuple = ()) -> sqlite3.Cursor: DashboardConfig = DashboardConfig() -EmailSender = EmailSender() +# EmailSender = EmailSender() _, APP_PREFIX = DashboardConfig.GetConfig("Server", "app_prefix") cors = CORS(app, resources={rf"{APP_PREFIX}/api/*": { "origins": "*",