mirror of
https://github.com/home-assistant/core.git
synced 2026-09-27 09:58:07 -04:00
Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
39 lines
859 B
Python
39 lines
859 B
Python
"""Diagnostics support for NRGkick."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from dataclasses import asdict
|
|
from typing import Any
|
|
|
|
from homeassistant.components.diagnostics import async_redact_data
|
|
from homeassistant.const import (
|
|
ATTR_LATITUDE,
|
|
ATTR_LONGITUDE,
|
|
CONF_PASSWORD,
|
|
CONF_USERNAME,
|
|
)
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from .coordinator import NRGkickConfigEntry
|
|
|
|
TO_REDACT = {
|
|
ATTR_LATITUDE,
|
|
ATTR_LONGITUDE,
|
|
"altitude",
|
|
CONF_PASSWORD,
|
|
CONF_USERNAME,
|
|
}
|
|
|
|
|
|
async def async_get_config_entry_diagnostics(
|
|
hass: HomeAssistant, entry: NRGkickConfigEntry
|
|
) -> dict[str, Any]:
|
|
"""Return diagnostics for a config entry."""
|
|
return async_redact_data(
|
|
{
|
|
"entry_data": entry.data,
|
|
"coordinator_data": asdict(entry.runtime_data.data),
|
|
},
|
|
TO_REDACT,
|
|
)
|