From d18be727210ca4426b4710b0d435f07353884511 Mon Sep 17 00:00:00 2001 From: Mattia Vidoni Date: Tue, 17 Oct 2023 22:26:16 +0200 Subject: [PATCH] Update db_management.py --- src/db_management.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/db_management.py b/src/db_management.py index e3c8488..91dab22 100644 --- a/src/db_management.py +++ b/src/db_management.py @@ -23,8 +23,7 @@ def read_support(chat_id): try: return Support[chat_id].Action except ObjectNotFound: - created = Support(Action="", id=chat_id) - return created.Action + return "" def write_support(status, chat_id):