mirror of https://github.com/home-assistant/core
28 lines
681 B
Python
28 lines
681 B
Python
"""Provides diagnostics for Solarlog."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
from homeassistant.components.diagnostics import async_redact_data
|
|
from homeassistant.const import CONF_HOST
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from . import SolarlogConfigEntry
|
|
|
|
TO_REDACT = [
|
|
CONF_HOST,
|
|
]
|
|
|
|
|
|
async def async_get_config_entry_diagnostics(
|
|
hass: HomeAssistant, config_entry: SolarlogConfigEntry
|
|
) -> dict[str, Any]:
|
|
"""Return diagnostics for a config entry."""
|
|
data = config_entry.runtime_data.data
|
|
|
|
return {
|
|
"config_entry": async_redact_data(config_entry.as_dict(), TO_REDACT),
|
|
"solarlog_data": data.to_dict(),
|
|
}
|