Satisfy ESLint no-unused-vars

This commit is contained in:
witzig 2017-04-02 14:00:42 +02:00
parent 52bbdb1a09
commit 9c2444488f

View file

@ -225,7 +225,6 @@ module.exports.statsClickedSubscribersByColumn = (campaign, linkId, request, col
}); });
Object.keys(data).forEach(key => { Object.keys(data).forEach(key => {
let name = key + ': ' + data[key]; let name = key + ': ' + data[key];
let value = data[key];
dataList.push([name, data[key]]); dataList.push([name, data[key]]);
}); });
return callback(null, dataList, total); return callback(null, dataList, total);