From 26549df6a911a840ea9b919dbbbf1132eb163fef Mon Sep 17 00:00:00 2001
From: timothycarambat <rambat1010@gmail.com>
Date: Wed, 27 Dec 2023 13:28:37 -0800
Subject: [PATCH] touchup linting

---
 collector/processSingleFile/convert/asPDF.js | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/collector/processSingleFile/convert/asPDF.js b/collector/processSingleFile/convert/asPDF.js
index ca433bf4c..f6d869d5c 100644
--- a/collector/processSingleFile/convert/asPDF.js
+++ b/collector/processSingleFile/convert/asPDF.js
@@ -18,7 +18,8 @@ async function asPDF({ fullFilePath = "", filename = "" }) {
   const docs = await pdfLoader.load();
   for (const doc of docs) {
     console.log(
-      `-- Parsing content from pg ${doc.metadata?.loc?.pageNumber || "unknown"
+      `-- Parsing content from pg ${
+        doc.metadata?.loc?.pageNumber || "unknown"
       } --`
     );
     if (!doc.pageContent.length) continue;