From b68755464c646f602756e4640c62700b149de27e Mon Sep 17 00:00:00 2001 From: minomy13 Date: Wed, 13 Nov 2024 17:06:00 +0100 Subject: [PATCH] fixed missing semicolon --- esphome/components/dht/dht.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/esphome/components/dht/dht.cpp b/esphome/components/dht/dht.cpp index 58285e324f..4826db197c 100644 --- a/esphome/components/dht/dht.cpp +++ b/esphome/components/dht/dht.cpp @@ -25,9 +25,9 @@ void DHT::dump_config() { } if (this->use_internal_pullup_ == true) { - ESP_LOGCONFIG(TAG, " Internal pull-up resistor enabled.") + ESP_LOGCONFIG(TAG, " Internal pull-up resistor enabled."); } else { - ESP_LOGCONFIG(TAG, " Internal pull-up resistor disabled.") + ESP_LOGCONFIG(TAG, " Internal pull-up resistor disabled."); } LOG_UPDATE_INTERVAL(this);