From 41f03a91b78b382dd761e8a60d8df5cb9bca4afd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Poczkodi?= Date: Mon, 4 Nov 2024 22:28:17 +0100 Subject: [PATCH] fix tab --- esphome/components/cse7766/cse7766.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/esphome/components/cse7766/cse7766.cpp b/esphome/components/cse7766/cse7766.cpp index 83b8269b97..2dffda03dd 100644 --- a/esphome/components/cse7766/cse7766.cpp +++ b/esphome/components/cse7766/cse7766.cpp @@ -71,12 +71,12 @@ bool CSE7766Component::check_byte_() { void CSE7766Component::parse_data_() { #if ESPHOME_LOG_LEVEL >= ESPHOME_LOG_LEVEL_VERY_VERBOSE { - std::string s = "Raw data:"; - char buff[4] = {0}; - for (uint8_t i = 0; i <= 23; i++) { - snprintf(buff, sizeof(buff), " %02X", this->raw_data_[i]); - s += buff; - } + std::string s = "Raw data:"; + char buff[4] = {0}; + for (uint8_t i = 0; i <= 23; i++) { + snprintf(buff, sizeof(buff), " %02X", this->raw_data_[i]); + s += buff; + } ESP_LOGVV(TAG, "%s", s.c_str()); } #endif