29 lines
704 B
Python
29 lines
704 B
Python
"""Diagnostics support for DSMR."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.util.json import json_loads
|
|
|
|
from . import DsmrConfigEntry
|
|
|
|
|
|
async def async_get_config_entry_diagnostics(
|
|
hass: HomeAssistant, config_entry: DsmrConfigEntry
|
|
) -> dict[str, Any]:
|
|
"""Return diagnostics for a config entry."""
|
|
|
|
return {
|
|
"entry": {
|
|
"data": {
|
|
**config_entry.data,
|
|
},
|
|
"unique_id": config_entry.unique_id,
|
|
},
|
|
"data": json_loads(config_entry.runtime_data.telegram.to_json())
|
|
if config_entry.runtime_data.telegram
|
|
else None,
|
|
}
|