From 2a35c95718a6359b223b1eb78a3faf329b522b76 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Tue, 8 Jul 2025 11:31:25 -0600 Subject: [PATCH] fixes --- esphome/components/runtime_stats/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/runtime_stats/__init__.py b/esphome/components/runtime_stats/__init__.py index aff0bf086f..a36e8bfd28 100644 --- a/esphome/components/runtime_stats/__init__.py +++ b/esphome/components/runtime_stats/__init__.py @@ -17,7 +17,7 @@ CONFIG_SCHEMA = cv.Schema( { cv.GenerateID(): cv.declare_id(RuntimeStatsCollector), cv.Optional( - CONF_LOG_INTERVAL, default=60000 + CONF_LOG_INTERVAL, default="60s" ): cv.positive_time_period_milliseconds, } )