diff --git a/bin/tests/download.py b/bin/tests/download.py index f38e250..f3597c2 100644 --- a/bin/tests/download.py +++ b/bin/tests/download.py @@ -4,7 +4,7 @@ import os import sqlite3 -conn = sqlite3.connect('../../db/theme.db') +conn = sqlite3.connect('../../db/.db') cursor = conn.cursor() file_list = os.listdir('../assets/themes/') diff --git a/bin/utils/b64img.py b/bin/utils/b64img.py index 5114f15..6619b12 100644 --- a/bin/utils/b64img.py +++ b/bin/utils/b64img.py @@ -66,5 +66,5 @@ def re_sort_number_image(origin_number: str, theme: str) -> tuple[bool, bool, bo if __name__ != '__main__': - conn = sqlite3.connect('./db/theme.db', check_same_thread=False) + conn = sqlite3.connect('./db/style.db', check_same_thread=False) cursor = conn.cursor()