更新db.py

This commit is contained in:
MarkusJoe
2022-04-09 10:55:07 +08:00
parent 5c38d4cc24
commit 9abc73962b
1 file changed
+2 -1
+2 -1
View File
@@ -42,7 +42,8 @@ class SQLite:
tables = self.__cursor.fetchall() tables = self.__cursor.fetchall()
lst = [] lst = []
for table in tables: for table in tables:
lst.append(table[1]) if table[1] != 'ReqCount':
lst.append(table[1])
del tables del tables
return lst return lst