mirror of
https://github.com/esphome/esphome.git
synced 2024-12-27 17:28:01 +01:00
Removed superfluous make_tuple
This commit is contained in:
parent
7566f6f818
commit
a9cac3ca82
@ -231,7 +231,7 @@ void DucoDiscovery::receive_response(const DucoMessage &message) {
|
||||
|
||||
if (message.data[0] != 0x00) {
|
||||
// node was found, store its information
|
||||
nodes_.emplace_back(std::make_tuple(next_node_, message.data[0]));
|
||||
nodes_.emplace_back(next_node_, message.data[0]);
|
||||
}
|
||||
|
||||
next_node_++;
|
||||
|
Loading…
Reference in New Issue
Block a user