Skip to content

Commit 15f1765

Browse files
AkhtarAmirAkhtarAmir
authored andcommitted
fix lint
1 parent af9b382 commit 15f1765

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

plugins/azure/eventhub/eventHubPublicAccess.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ module.exports = {
2020
default: false,
2121
}
2222
},
23-
run: function (cache, settings, callback) {
23+
run: function(cache, settings, callback) {
2424
var results = [];
2525
var source = {};
2626
var locations = helpers.locations(settings.govcloud);
2727
let config = {
2828
check_selected_networks: settings.check_selected_networks || this.settings.check_selected_networks.default
2929
};
3030

31-
async.each(locations.eventHub, function (location, rcb) {
31+
async.each(locations.eventHub, function(location, rcb) {
3232
var eventHubs = helpers.addSource(cache, source,
3333
['eventHub', 'listEventHub', location]);
3434

@@ -79,7 +79,7 @@ module.exports = {
7979
}
8080
}
8181
rcb();
82-
}, function () {
82+
}, function() {
8383
callback(null, results, source);
8484
});
8585
}

0 commit comments

Comments
 (0)