mirror of https://github.com/home-assistant/core
23 lines
555 B
Python
23 lines
555 B
Python
"""Diagnostics support for GIOS."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from dataclasses import asdict
|
|
from typing import Any
|
|
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from . import GiosConfigEntry
|
|
|
|
|
|
async def async_get_config_entry_diagnostics(
|
|
hass: HomeAssistant, config_entry: GiosConfigEntry
|
|
) -> dict[str, Any]:
|
|
"""Return diagnostics for a config entry."""
|
|
coordinator = config_entry.runtime_data.coordinator
|
|
|
|
return {
|
|
"config_entry": config_entry.as_dict(),
|
|
"coordinator_data": asdict(coordinator.data),
|
|
}
|