Skip to content

Commit

Permalink
build: correct coding error by es-lint
Browse files Browse the repository at this point in the history
Ref:#237
Time-spent: 0h2m
  • Loading branch information
TBalint2000 committed Jul 21, 2024
1 parent 09cac33 commit ce8eb38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion binocular-backend/endpoints/getCommitType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ export default async function (req, res) {
if (!req.query.commitMessage) {
res.sendStatus(400);
}
res.send(JSON.stringify(await classifier.predict('' + req.query.commitMessage, 5)))
res.send(JSON.stringify(await classifier.predict('' + req.query.commitMessage, 5)));
}

0 comments on commit ce8eb38

Please sign in to comment.