summaryrefslogtreecommitdiff
path: root/packages/cli/src/gemini.ts
diff options
context:
space:
mode:
authorOlcan <[email protected]>2025-04-18 16:38:01 -0700
committerGitHub <[email protected]>2025-04-18 16:38:01 -0700
commitf3669f20a92025cb19e14f6bf1c2559ba37f7f11 (patch)
tree2fafe9579f64516ce7504faed6bc40407a1400bd /packages/cli/src/gemini.ts
parente5a50d0154ca27dc7dd66b3bb5992719b16b1e67 (diff)
minor lint fix (#45)
Diffstat (limited to 'packages/cli/src/gemini.ts')
-rw-r--r--packages/cli/src/gemini.ts2
1 files changed, 1 insertions, 1 deletions
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