From 4de9b83cb98d80b9d63a1ac19bea1a461a15efdc Mon Sep 17 00:00:00 2001 From: Iron Man Date: Wed, 24 Apr 2024 22:58:24 +0200 Subject: [PATCH] Update ds248x.cpp clang format --- esphome/components/ds248x/ds248x.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/ds248x/ds248x.cpp b/esphome/components/ds248x/ds248x.cpp index c28088ed24..1f56e24349 100644 --- a/esphome/components/ds248x/ds248x.cpp +++ b/esphome/components/ds248x/ds248x.cpp @@ -352,7 +352,7 @@ uint8_t DS248xComponent::read_config_() { void DS248xComponent::write_config_(uint8_t cfg) { std::array cmd; cmd[0] = DS248X_COMMAND_WRITECONFIG; - cmd[1] = cfg | ((~cfg) << 4); // NOLINT + cmd[1] = cfg | ((~cfg) << 4); // NOLINT this->write(cmd.data(), sizeof(cmd)); }