mirror of
https://github.com/home-assistant/core.git
synced 2026-09-07 22:20:07 +01:00
15 lines
389 B
Python
15 lines
389 B
Python
"""Diagnostics platform for the LED Infrared integration."""
|
|
|
|
from typing import Any
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
|
|
async def async_get_config_entry_diagnostics(
|
|
hass: HomeAssistant, config_entry: ConfigEntry
|
|
) -> dict[str, Any]:
|
|
"""Return diagnostics for a config entry."""
|
|
|
|
return dict(config_entry.data)
|