From 9abc73962b556957f96e5040a3882c48cb833d6f Mon Sep 17 00:00:00 2001 From: MarkusJoe Date: Sat, 9 Apr 2022 10:55:07 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0db.py?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/db/db.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/db/db.py b/app/db/db.py index a4970cf..3f94b54 100644 --- a/app/db/db.py +++ b/app/db/db.py @@ -42,7 +42,8 @@ class SQLite: tables = self.__cursor.fetchall() lst = [] for table in tables: - lst.append(table[1]) + if table[1] != 'ReqCount': + lst.append(table[1]) del tables return lst