mirror of https://github.com/home-assistant/core
26 lines
842 B
Python
26 lines
842 B
Python
"""Diagnostics support for AccuWeather."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
from homeassistant.components.diagnostics import async_redact_data
|
|
from homeassistant.const import CONF_API_KEY, CONF_LATITUDE, CONF_LONGITUDE
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from .coordinator import AccuWeatherConfigEntry, AccuWeatherData
|
|
|
|
TO_REDACT = {CONF_API_KEY, CONF_LATITUDE, CONF_LONGITUDE}
|
|
|
|
|
|
async def async_get_config_entry_diagnostics(
|
|
hass: HomeAssistant, config_entry: AccuWeatherConfigEntry
|
|
) -> dict[str, Any]:
|
|
"""Return diagnostics for a config entry."""
|
|
accuweather_data: AccuWeatherData = config_entry.runtime_data
|
|
|
|
return {
|
|
"config_entry_data": async_redact_data(dict(config_entry.data), TO_REDACT),
|
|
"observation_data": accuweather_data.coordinator_observation.data,
|
|
}
|