Skip to content

Commit

Permalink
Fix ci formatting failures
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy Steed committed Oct 14, 2019
1 parent 3759cf6 commit 2800d51
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions action/alarmWebAction.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ function main(params) {
return getDatabase(getDBConfig(params));
})
.then((database) => {
db = database
db = database;
return db.getWorkerID(workers);
})
.then((worker) => {
Expand Down Expand Up @@ -178,7 +178,7 @@ function main(params) {
return getDatabase(getDBConfig(params));
})
.then((database) => {
db = database
db = database;
return db.getTrigger(triggerID);
})
.then(doc => {
Expand Down Expand Up @@ -231,7 +231,7 @@ function main(params) {
return getDatabase(getDBConfig(params));
})
.then((database) => {
db = database
db = database;
return db.getTrigger(triggerID);
})
.then(trigger => {
Expand Down Expand Up @@ -352,7 +352,7 @@ function main(params) {
return getDatabase(getDBConfig(params));
})
.then((database) => {
db = database
db = database;
return db.getTrigger(triggerID);
})
.then(trigger => {
Expand Down

0 comments on commit 2800d51

Please sign in to comment.