Anyone smart enough to maybe help me with the below template sensor?
In essence it just adds together all the defined devices with power usage to show me a total current value.
Use to work great, but in the last update something broke, can't find what changed in the changelogs and I'm scared to ask those angry nerds on the HA forum

.
Would appreciate if someone could maybe nudge me in the right direction.
TIA
Code:
template:
- sensor:
- unique_id: Total Home Wattage
name: "Total Home Wattage"
unit_of_measurement: "W"
state: >
{{ (states('sensor.fridge_power')|float + states('sensor.geyser_power')|float + states('sensor.ultralink2_power')|float + states('sensor.bedroom_lamp_1_power')|float + states('sensor.hue_lamp_2_power')|float + states('sensor.tp_link_plug_current_consumption') |float)|round(1) }}