Skip to content

Commit

Permalink
linter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ddelgrosso1 committed Jul 8, 2024
1 parent 1e6b547 commit ed021e6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/resumable-upload.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1252,7 +1252,9 @@ export class Upload extends Writable {
}
this.numRetries++;
} else {
this.destroy(new Error(`Retry limit exceeded - ${JSON.stringify(resp.data)}`);
this.destroy(
new Error(`Retry limit exceeded - ${JSON.stringify(resp.data)}`)
);
}
}

Expand Down

0 comments on commit ed021e6

Please sign in to comment.