diff options
| author | Olcan <[email protected]> | 2025-04-18 16:38:01 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-04-18 16:38:01 -0700 |
| commit | f3669f20a92025cb19e14f6bf1c2559ba37f7f11 (patch) | |
| tree | 2fafe9579f64516ce7504faed6bc40407a1400bd | |
| parent | e5a50d0154ca27dc7dd66b3bb5992719b16b1e67 (diff) | |
minor lint fix (#45)
| -rw-r--r-- | packages/cli/src/gemini.ts | 2 |
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 |
