mirror of https://github.com/home-assistant/core
21 lines
572 B
Python
21 lines
572 B
Python
"""Diagnostics support for TwenteMilieu."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
|
|
async def async_get_config_entry_diagnostics(
|
|
hass: HomeAssistant, entry: ConfigEntry
|
|
) -> dict[str, Any]:
|
|
"""Return diagnostics for a config entry."""
|
|
return {
|
|
f"WasteType.{waste_type.name}": [
|
|
waste_date.isoformat() for waste_date in waste_dates
|
|
]
|
|
for waste_type, waste_dates in entry.runtime_data.data.items()
|
|
}
|