ruff format

This commit is contained in:
Justin Visser 2026-03-02 20:11:10 +01:00
parent b47f825d54
commit e156de22c3
5 changed files with 28 additions and 34 deletions

View file

@ -26,9 +26,7 @@ def init_db(db_path: Path) -> None:
updated_at TEXT NOT NULL
)
""")
conn.execute(
"CREATE INDEX IF NOT EXISTS idx_segments_order ON segments(sort_order)"
)
conn.execute("CREATE INDEX IF NOT EXISTS idx_segments_order ON segments(sort_order)")
conn.commit()
finally:
conn.close()