From 74f0f003216efa75b3c514637078818417638f22 Mon Sep 17 00:00:00 2001 From: Nick Farina Date: Tue, 20 Oct 2015 09:31:57 -0700 Subject: [PATCH] Fix stray comma --- example-plugins/homebridge-lockitron/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example-plugins/homebridge-lockitron/index.js b/example-plugins/homebridge-lockitron/index.js index 1cb7db5..e4653b7 100644 --- a/example-plugins/homebridge-lockitron/index.js +++ b/example-plugins/homebridge-lockitron/index.js @@ -75,7 +75,7 @@ LockitronAccessory.prototype.setState = function(state, callback) { callback(err || new Error("Error setting lock state.")); } }.bind(this)); -}, +} LockitronAccessory.prototype.getServices = function() { return [this.service];