style: pass Path(DB_PATH) to insert_job for type consistency

This commit is contained in:
pyr0ball 2026-03-20 09:51:35 -07:00
parent 1b2643675d
commit f3e7f89e2e

View file

@ -608,7 +608,7 @@ def queue_digest_jobs(digest_id: int, body: QueueJobsBody):
if not url or not url.startswith(('http://', 'https://')):
skipped += 1
continue
result = insert_job(DB_PATH, {
result = insert_job(Path(DB_PATH), {
'url': url,
'title': '',
'company': '',