chore: Fix config type annotations
All checks were successful
Build and deploy / build (push) Successful in 12m30s
Build and deploy / Deploy container (push) Has been skipped

This commit is contained in:
2025-10-22 03:59:59 +02:00
parent 8a3143a3ea
commit 5947098bfb
18 changed files with 32 additions and 10 deletions

View File

@@ -4,12 +4,12 @@ local helper = require("config.helper")
local hue_bridge = require("config.hue_bridge")
local windows = require("config.windows")
--- @type Module
local module = {}
--- @type AirFilter?
local air_filter = nil
--- @type SetupFunction
function module.setup(mqtt_client)
local lights = devices.HueGroup.new({
identifier = "bedroom_lights",
@@ -55,6 +55,7 @@ function module.setup(mqtt_client)
})
windows.add(window)
--- @type Module
return {
devices = {
lights,