Fix linting issue

This commit is contained in:
Reinier Criel 2025-11-21 10:31:57 -08:00
parent ab1aa0dce9
commit 72bf44cb6d
2 changed files with 2 additions and 3 deletions

View file

@ -131,7 +131,7 @@ export async function runPip(command, args) {
if (cleanupConfigPath) {
try {
await fs.unlink(cleanupConfigPath);
} catch (error) {
} catch {
// Ignore cleanup errors - the file may have already been deleted or is inaccessible
// Temp files in os.tmpdir() may eventually be cleaned by the OS, but timing varies by platform
}