Skip to content

Commit 14aadc9

Browse files
committed
zb-motion: Indentation fixes
1 parent 3dec028 commit 14aadc9

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

drivers/SmartThings/zigbee-motion-sensor/src/aurora/can_handle.lua

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
-- Licensed under the Apache License, Version 2.0
33

44
local function aurora_can_handle(opts, driver, device, ...)
5-
if device:get_manufacturer() == "Aurora" and device:get_model() == "MotionSensor51AU" then
5+
if device:get_manufacturer() == "Aurora" and device:get_model() == "MotionSensor51AU" then
66
return true, require("aurora")
7-
end
8-
return false
97
end
8+
return false
9+
end
1010

1111
return aurora_can_handle

drivers/SmartThings/zigbee-motion-sensor/src/centralite/can_handle.lua

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
-- Licensed under the Apache License, Version 2.0
33

44
local function centralite_can_handle(opts, driver, device, ...)
5-
if device:get_manufacturer() == "CentraLite" then
5+
if device:get_manufacturer() == "CentraLite" then
66
return true, require("centralite")
7-
end
8-
return false
97
end
8+
return false
9+
end
1010

1111
return centralite_can_handle

drivers/SmartThings/zigbee-motion-sensor/src/gatorsystem/can_handle.lua

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
-- Licensed under the Apache License, Version 2.0
33

44
local function gatorsystem_can_handle(opts, driver, device, ...)
5-
if device:get_manufacturer() == "GatorSystem" and device:get_model() == "GSHW01" then
5+
if device:get_manufacturer() == "GatorSystem" and device:get_model() == "GSHW01" then
66
return true, require("gatorsystem")
7-
end
8-
return false
97
end
8+
return false
9+
end
1010

1111
return gatorsystem_can_handle

drivers/SmartThings/zigbee-motion-sensor/src/samjin/can_handle.lua

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
-- Licensed under the Apache License, Version 2.0
33

44
local function samjin_can_handle(opts, driver, device, ...)
5-
if device:get_manufacturer() == "Samjin" then
5+
if device:get_manufacturer() == "Samjin" then
66
return true, require("samjin")
7-
end
8-
return false
97
end
8+
return false
9+
end
1010

1111
return samjin_can_handle

drivers/SmartThings/zigbee-motion-sensor/src/smartthings/can_handle.lua

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
-- Licensed under the Apache License, Version 2.0
33

44
local function smartthings_can_handle(opts, driver, device, ...)
5-
if device:get_manufacturer() == "SmartThings" then
5+
if device:get_manufacturer() == "SmartThings" then
66
return true, require("smartthings")
7-
end
8-
return false
7+
end
8+
return false
99
end
1010

1111
return smartthings_can_handle

0 commit comments

Comments
 (0)