From f3669f20a92025cb19e14f6bf1c2559ba37f7f11 Mon Sep 17 00:00:00 2001 From: Olcan Date: Fri, 18 Apr 2025 16:38:01 -0700 Subject: [PATCH] minor lint fix (#45) --- packages/cli/src/gemini.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/src/gemini.ts b/packages/cli/src/gemini.ts index b4db8189..fe93107b 100644 --- a/packages/cli/src/gemini.ts +++ b/packages/cli/src/gemini.ts @@ -29,7 +29,7 @@ async function main() { } // --- Global Unhandled Rejection Handler --- -process.on('unhandledRejection', (reason, promise) => { +process.on('unhandledRejection', (reason, _promise) => { // Check if this is the known 429 ClientError that sometimes escapes // this is a workaround for a specific issue with the way we are calling gemini // where a 429 error is thrown but not caught, causing an unhandled rejection