Skip to content

Commit 2f88394

Browse files
committed
Fixed linting
1 parent b493761 commit 2f88394

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

codegens/http/lib/util.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ function getBody (request, trimRequestBody) {
215215
case FORM_DATA:
216216
/* istanbul ignore else */
217217
if (!_.isEmpty(request.body[request.body.mode])) {
218-
requestBody += `--${FORM_DATA_BOUNDARY}\n`
218+
requestBody += `--${FORM_DATA_BOUNDARY}\n`;
219219
let properties = getMembersOfPropertyList(request.body[request.body.mode]);
220220
_.forEach(properties, function (property) {
221221
/* istanbul ignore else */

0 commit comments

Comments
 (0)