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