1
mirror of https://github.com/home-assistant/core synced 2024-08-06 09:34:49 +02:00
ha-core/homeassistant/components/samsungtv/diagnostics.py

28 lines
850 B
Python
Raw Normal View History

2022-02-01 01:10:55 +01:00
"""Diagnostics support for SamsungTV."""
from __future__ import annotations
from typing import Any
2022-02-01 01:10:55 +01:00
from homeassistant.components.diagnostics import async_redact_data
from homeassistant.config_entries import ConfigEntry
from homeassistant.const import CONF_TOKEN
from homeassistant.core import HomeAssistant
from .bridge import SamsungTVLegacyBridge, SamsungTVWSBridge
from .const import DOMAIN
2022-02-01 01:10:55 +01:00
TO_REDACT = {CONF_TOKEN}
async def async_get_config_entry_diagnostics(
hass: HomeAssistant, entry: ConfigEntry
) -> dict[str, Any]:
2022-02-01 01:10:55 +01:00
"""Return diagnostics for a config entry."""
bridge: SamsungTVLegacyBridge | SamsungTVWSBridge = hass.data[DOMAIN][
entry.entry_id
]
return {
"entry": async_redact_data(entry.as_dict(), TO_REDACT),
"device_info": await hass.async_add_executor_job(bridge.device_info),
}