From dcd41d74fcbe8ab022c615e39139e2789221b3fc Mon Sep 17 00:00:00 2001 From: pyr0ball Date: Fri, 20 Mar 2026 09:51:35 -0700 Subject: [PATCH] style: pass Path(DB_PATH) to insert_job for type consistency --- dev-api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-api.py b/dev-api.py index 44e0d53..7dacd80 100644 --- a/dev-api.py +++ b/dev-api.py @@ -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': '',