From de21822c7a0e84e3f79e95c18482d7158c51be07 Mon Sep 17 00:00:00 2001 From: Automation Date: Mon, 8 Sep 2025 10:54:13 +0200 Subject: [PATCH] fix(py): correct indentation in to_code for stream options --- components/truma_inetbox/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/truma_inetbox/__init__.py b/components/truma_inetbox/__init__.py index c2b01b7..f6cde36 100644 --- a/components/truma_inetbox/__init__.py +++ b/components/truma_inetbox/__init__.py @@ -273,7 +273,7 @@ async def to_code(config): if CONF_OBSERVER_MODE in config: cg.add(var.set_observer_mode(config[CONF_OBSERVER_MODE])) - if CONF_UDP_STREAM_HOST in config: + if CONF_UDP_STREAM_HOST in config: cg.add(var.set_udp_stream_host(config[CONF_UDP_STREAM_HOST])) if CONF_UDP_STREAM_PORT in config: cg.add(var.set_udp_stream_port(config[CONF_UDP_STREAM_PORT]))