diff options
| author | Taylor Mullen <[email protected]> | 2025-04-18 17:47:49 -0400 |
|---|---|---|
| committer | N. Taylor Mullen <[email protected]> | 2025-04-18 17:51:16 -0400 |
| commit | e7fa39112a9b528bfe5a36a7b8b806de645eb977 (patch) | |
| tree | ec91ed950317d26b41674f08766bdb525bd5d43c /packages/cli/src/gemini.ts | |
| parent | dfae3f62848f0c8c175f0e992a479c3bf49e50ed (diff) | |
Manually fix hooks and utils linting errors (partial)
- More changes are to come, this is truly a partial change in order to not disrupt as many people as possible.
Part of https://b.corp.google.com/issues/411384603
Diffstat (limited to 'packages/cli/src/gemini.ts')
| -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 6c4fe3ae..62ddd147 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, _) => { // 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 |
