Skip to content

Commit f98e0cc

Browse files
committed
Remove unused parameter, as pointed out by ESLint
Signed-off-by: Johannes Schindelin <[email protected]>
1 parent bb62292 commit f98e0cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

GitGitGadget/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ const triggerAzurePipeline = async (token, organization, project, buildDefinitio
5656
};
5757

5858
return new Promise((resolve, reject) => {
59-
const handleResponse = (res, err) => {
59+
const handleResponse = (res) => {
6060
res.setEncoding('utf8');
6161
var response = '';
6262
res.on('data', (chunk) => {

0 commit comments

Comments
 (0)