mirror of
https://github.com/esphome/esphome.git
synced 2025-10-06 03:43:49 +01:00
Remove unnecessary ellipsis (#8964)
This commit is contained in:
@@ -10,7 +10,7 @@ static const char *const TAG = "factory_reset.button";
|
||||
|
||||
void FactoryResetButton::dump_config() { LOG_BUTTON("", "Factory Reset Button", this); }
|
||||
void FactoryResetButton::press_action() {
|
||||
ESP_LOGI(TAG, "Resetting...");
|
||||
ESP_LOGI(TAG, "Resetting");
|
||||
// Let MQTT settle a bit
|
||||
delay(100); // NOLINT
|
||||
global_preferences->reset();
|
||||
|
@@ -14,7 +14,7 @@ void FactoryResetSwitch::write_state(bool state) {
|
||||
this->publish_state(false);
|
||||
|
||||
if (state) {
|
||||
ESP_LOGI(TAG, "Resetting...");
|
||||
ESP_LOGI(TAG, "Resetting");
|
||||
// Let MQTT settle a bit
|
||||
delay(100); // NOLINT
|
||||
global_preferences->reset();
|
||||
|
Reference in New Issue
Block a user