From 867ff200ce9aab3870c20ea6647804065b855c62 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Thu, 30 Oct 2025 14:18:56 -0500 Subject: [PATCH] break it out, logic was too hard to follow --- esphome/components/select/select_call.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/select/select_call.cpp b/esphome/components/select/select_call.cpp index 615cc8d057..45ea241d06 100644 --- a/esphome/components/select/select_call.cpp +++ b/esphome/components/select/select_call.cpp @@ -49,7 +49,7 @@ SelectCall &SelectCall::with_index(size_t index) { optional SelectCall::calculate_target_index_(const char *name) { const auto &options = this->parent_->traits.get_options(); if (options.empty()) { - ESP_LOGW(TAG, "'%s' - Cannot perform SelectCall, select has no options", name); + ESP_LOGW(TAG, "'%s' - Select has no options", name); return {}; }