dotKrad / hass-fpl

FPL Component for Home Assistant
MIT License
40 stars 20 forks source link

Device_State_Attributes Warning in 2021.12.0 #19

Closed adam-olson closed 2 years ago

adam-olson commented 2 years ago

Version of the custom_component

2cb7f60

Configuration


Setup using UI interface.

Describe the bug

Warning in Home Assistant 2021.12.0 log on device_state_attributes.

Debug log


2021-12-11 15:18:51 WARNING (MainThread) [homeassistant.helpers.entity] Entity sensor.fpl_8416318809_projected_bill (<class 'custom_components.fpl.sensor_ProjectedBillSensor.FplProjectedBillSensor'>) implements device_state_attributes. Please report it to the custom component author.
2021-12-11 15:18:51 WARNING (MainThread) [homeassistant.helpers.entity] Entity sensor.fpl_8416318809_projected_budget_bill (<class 'custom_components.fpl.sensor_ProjectedBillSensor.ProjectedBudgetBillSensor'>) implements device_state_attributes. Please report it to the custom component author.
2021-12-11 15:18:51 WARNING (MainThread) [homeassistant.helpers.entity] Entity sensor.fpl_8416318809_projected_actual_bill (<class 'custom_components.fpl.sensor_ProjectedBillSensor.ProjectedActualBillSensor'>) implements device_state_attributes. Please report it to the custom component author.
2021-12-11 15:18:51 WARNING (MainThread) [homeassistant.helpers.entity] Entity sensor.fpl_8416318809_defered_amount (<class 'custom_components.fpl.sensor_ProjectedBillSensor.DeferedAmountSensor'>) implements device_state_attributes. Please report it to the custom component author.
2021-12-11 15:18:51 WARNING (MainThread) [homeassistant.helpers.entity] Entity sensor.fpl_8416318809_daily_average (<class 'custom_components.fpl.sensor_AverageDailySensor.FplAverageDailySensor'>) implements device_state_attributes. Please report it to the custom component author.
2021-12-11 15:18:51 WARNING (MainThread) [homeassistant.helpers.entity] Entity sensor.fpl_8416318809_budget_daily_average (<class 'custom_components.fpl.sensor_AverageDailySensor.BudgetDailyAverageSensor'>) implements device_state_attributes. Please report it to the custom component author.
2021-12-11 15:18:51 WARNING (MainThread) [homeassistant.helpers.entity] Entity sensor.fpl_8416318809_actual_daily_average (<class 'custom_components.fpl.sensor_AverageDailySensor.ActualDailyAverageSensor'>) implements device_state_attributes. Please report it to the custom component author.
2021-12-11 15:18:51 WARNING (MainThread) [homeassistant.helpers.entity] Entity sensor.fpl_8416318809_daily_usage (<class 'custom_components.fpl.sensor_DailyUsageSensor.FplDailyUsageSensor'>) implements device_state_attributes. Please report it to the custom component author.
2021-12-11 15:18:51 WARNING (MainThread) [homeassistant.helpers.entity] Entity sensor.fpl_8416318809_daily_usage_kwh (<class 'custom_components.fpl.sensor_DailyUsageSensor.FplDailyUsageKWHSensor'>) implements device_state_attributes. Please report it to the custom component author.
2021-12-11 15:18:51 WARNING (MainThread) [homeassistant.helpers.entity] Entity sensor.fpl_8416318809_current_bill_date (<class 'custom_components.fpl.sensor_DatesSensor.CurrentBillDateSensor'>) implements device_state_attributes. Please report it to the custom component author.
2021-12-11 15:18:51 WARNING (MainThread) [homeassistant.helpers.entity] Entity sensor.fpl_8416318809_next_bill_date (<class 'custom_components.fpl.sensor_DatesSensor.NextBillDateSensor'>) implements device_state_attributes. Please report it to the custom component author.
2021-12-11 15:18:51 WARNING (MainThread) [homeassistant.helpers.entity] Entity sensor.fpl_8416318809_service_days (<class 'custom_components.fpl.sensor_DatesSensor.ServiceDaysSensor'>) implements device_state_attributes. Please report it to the custom component author.
2021-12-11 15:18:51 WARNING (MainThread) [homeassistant.helpers.entity] Entity sensor.fpl_8416318809_as_of_days (<class 'custom_components.fpl.sensor_DatesSensor.AsOfDaysSensor'>) implements device_state_attributes. Please report it to the custom component author.
2021-12-11 15:18:51 WARNING (MainThread) [homeassistant.helpers.entity] Entity sensor.fpl_8416318809_remaining_days (<class 'custom_components.fpl.sensor_DatesSensor.RemainingDaysSensor'>) implements device_state_attributes. Please report it to the custom component author.
2021-12-11 15:18:51 WARNING (MainThread) [homeassistant.helpers.entity] Entity sensor.fpl_8416318809_projected_kwh (<class 'custom_components.fpl.sensor_KWHSensor.ProjectedKWHSensor'>) implements device_state_attributes. Please report it to the custom component author.
2021-12-11 15:18:51 WARNING (MainThread) [homeassistant.helpers.entity] Entity sensor.fpl_8416318809_daily_average_kwh (<class 'custom_components.fpl.sensor_KWHSensor.DailyAverageKWHSensor'>) implements device_state_attributes. Please report it to the custom component author.
2021-12-11 15:18:51 WARNING (MainThread) [homeassistant.helpers.entity] Entity sensor.fpl_8416318809_bill_to_date_kwh (<class 'custom_components.fpl.sensor_KWHSensor.BillToDateKWHSensor'>) implements device_state_attributes. Please report it to the custom component author.
adam-olson commented 2 years ago

This appears to be the pull on this change, https://github.com/home-assistant/core/pull/47304 .

Adam