增加更多主题选择并修复了bug

This commit is contained in:
MarkusJoe
2022-02-08 19:46:11 +08:00
parent ef08d44ba6
commit 44514bc519
353 files changed
+1359 -1185

No files matched your search

+7
View File
@@ -0,0 +1,7 @@
import sqlite3
conn = sqlite3.connect('../assets/theme.db')
cursor = conn.cursor()
cursor.execute('select * from sqlite_master where type="table"')
data = cursor.fetchall()
print(data)