Tune editor

This commit is contained in:
marc
2025-03-16 18:45:08 +01:00
parent a85efd0838
commit 6c83d11e5b
33 changed files with 960 additions and 312 deletions

View File

@@ -8,11 +8,10 @@ from .write import insert_tema
def create_db(con: Optional[Connection] = None):
with get_connection(con) as con:
drop_temes_table(con)
create_temes_table(con)
for tema in data.TEMES:
insert_tema(tema, con)
# for tema in data.TEMES:
# insert_tema(tema, con)
def drop_temes_table(con: Connection):