From e91ccf38ff379f9641e7678cf4ea0095050e5aa5 Mon Sep 17 00:00:00 2001 From: Alex Garcia Date: Wed, 31 Jul 2024 12:56:02 -0700 Subject: [PATCH] fmt --- scripts/progress.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/progress.ts b/scripts/progress.ts index 6a41f0e..ecec5b4 100644 --- a/scripts/progress.ts +++ b/scripts/progress.ts @@ -25,9 +25,9 @@ const width = 60; console.log( "▓".repeat((progress < 0 ? 0 : progress) * width) + "░".repeat((1 - progress) * width) + - ` (${TOTAL - numTotal}/${TOTAL})` + ` (${TOTAL - numTotal}/${TOTAL})`, ); console.log(); console.log( - `${(progress * 100.0).toPrecision(2)}% complete to sqlite-vec v0.1.0` + `${(progress * 100.0).toPrecision(2)}% complete to sqlite-vec v0.1.0`, );