mirror of https://github.com/home-assistant/core
26 lines
652 B
Python
26 lines
652 B
Python
"""Provides diagnostics for madVR."""
|
|
|
|
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 MadVRConfigEntry
|
|
|
|
TO_REDACT = [CONF_HOST]
|
|
|
|
|
|
async def async_get_config_entry_diagnostics(
|
|
hass: HomeAssistant, config_entry: MadVRConfigEntry
|
|
) -> 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),
|
|
"madvr_data": data,
|
|
}
|