Sensors stopped working after Update

Idk whats changing but alot of my template Sensors stopped working a couple days ago

  - platform: template
    sensors:
      grid_infeed:
          friendly_name: "Grid Infeed"
          unit_of_measurement: 'W'
          value_template: "{{ states('sensor.pv') | float | min(0) | abs }}"
          device_class: "power"

Check the log for error messages related to your Template Sensors. There may be some referring to the need to provide default values for the filters you are using (like float should now be float(0) where the 0 represents what it should report in the event it is unable to convert the supplied value).

1 Like

yep worked. TY <3