Skip to content

Commit

Permalink
fix: missing paren
Browse files Browse the repository at this point in the history
  • Loading branch information
feywind committed Feb 18, 2025
1 parent 3a7d6e0 commit a68ca9a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -676,7 +676,7 @@ export class {{ service.name }}Client {
{{ util.toInterface(method.outputInterface) }},
{{ util.toInterface(method.inputInterface) }}|undefined,
{}|undefined>|undefined = callback
? (error, response, nextRequest, rawResponse => {
? (error, response, nextRequest, rawResponse) => {
this._log.info('{{ method.name.toCamelCase() }} response %j', rawResponse);
callback!(error, response, nextRequest, rawResponse); // We verified `callback` above.
}
Expand Down

0 comments on commit a68ca9a

Please sign in to comment.