1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-12 00:02:21 +01:00

refactor: adjust formatting of DynamicLamp constructor for consistency

This commit is contained in:
Oliver Kleinecke
2025-02-15 15:30:14 +01:00
parent 7d7c844dda
commit fffdcee6dd

View File

@@ -9,7 +9,7 @@ namespace dynamic_lamp {
class DynamicLamp : public output::FloatOutput, public Parented<DynamicLampComponent> {
public:
DynamicLamp(DynamicLampComponent *parent, DynamicLampIdx lamp) : parent_(parent), lamp_(lamp) {}
DynamicLamp(DynamicLampComponent *parent, DynamicLampIdx lamp) : parent_(parent), lamp_(lamp) {}
protected:
void write_state(float state) override;