From e0477e3bb19149f0e7ec5c393c1a913b78ffdb2a Mon Sep 17 00:00:00 2001 From: "pre-commit-ci-lite[bot]" <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com> Date: Sun, 19 Oct 2025 07:53:21 +0000 Subject: [PATCH] [pre-commit.ci lite] apply automatic fixes --- esphome/components/script/script.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/esphome/components/script/script.h b/esphome/components/script/script.h index 55967ead06..bb26f5b9ef 100644 --- a/esphome/components/script/script.h +++ b/esphome/components/script/script.h @@ -116,7 +116,8 @@ template class QueueingScript : public Script, public Com // max_runs_ is the maximum *total* instances (running + queued) // So we reject when num_queued_ + 1 >= max_runs_ (queued + running >= max) if (this->num_queued_ + 1 >= this->max_runs_) { - this->esp_logw_(__LINE__, ESPHOME_LOG_FORMAT("Script '%s' maximum total instances (running + queued) exceeded!"), + this->esp_logw_(__LINE__, + ESPHOME_LOG_FORMAT("Script '%s' maximum total instances (running + queued) exceeded!"), LOG_STR_ARG(this->name_)); return; }