From 4fbb1c77e3922e0b9789e84b0c90cca96ce6b664 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Poczkodi?= Date: Mon, 21 Oct 2024 22:58:10 +0200 Subject: [PATCH] formatting --- esphome/components/si4713_i2c/si4713.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/esphome/components/si4713_i2c/si4713.h b/esphome/components/si4713_i2c/si4713.h index fa7cf304a4..751a60a76c 100644 --- a/esphome/components/si4713_i2c/si4713.h +++ b/esphome/components/si4713_i2c/si4713.h @@ -62,9 +62,7 @@ class Si4713Component : public PollingComponent, public i2c::I2CDevice { bool send_cmd_(const CmdBase *cmd, size_t cmd_size, ResBase *res, size_t res_size); - template bool send_cmd_(const CMD &cmd) { - return this->send_cmd_(&cmd, sizeof(cmd), nullptr, 0); - } + template bool send_cmd_(const CMD &cmd) { return this->send_cmd_(&cmd, sizeof(cmd), nullptr, 0); } template bool send_cmd_(CMD cmd, RES &res) { return this->send_cmd_(&cmd, sizeof(cmd), &res, sizeof(res));