Skip to content

Commit

Permalink
Eslint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Shaquu committed Jun 24, 2024
1 parent ce77f37 commit f3d2532
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/accessories/Light-AdaptiveLighting_accessory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,12 +116,12 @@ const adaptiveLightingController = new AdaptiveLightingController(lightbulbServi
});

// Requires AdaptiveLightingControllerMode.MANUAL to be set as a controllerMode
adaptiveLightingController.on('update', () => {
adaptiveLightingController.on("update", () => {
console.log("Adaptive Lighting updated");
}).on('update', (update) => {
}).on("update", (update) => {
console.log("Adaptive Lighting schedule updated to " + util.inspect(update));
}).on('disable', () => {
}).on("disable", () => {
console.log("Adaptive Lighting disabled");
})
});

accessory.configureController(adaptiveLightingController);

0 comments on commit f3d2532

Please sign in to comment.