mirror of
https://github.com/esphome/esphome.git
synced 2024-11-23 15:38:11 +01:00
updated formatting
This commit is contained in:
parent
9f027103ed
commit
9af492c219
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ bool MQTTSensorComponent::send_initial_state() {
|
|||
}
|
||||
bool MQTTSensorComponent::publish_state(float value) {
|
||||
int8_t accuracy = this->sensor_->get_accuracy_decimals();
|
||||
if(std::isnan(value))
|
||||
if (std::isnan(value))
|
||||
return this->publish(this->get_state_topic_(), "None");
|
||||
return this->publish(this->get_state_topic_(), value_accuracy_to_string(value, accuracy));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue