Potential fix for pull request finding

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Franck Nijhof
2026-04-16 05:50:16 +02:00
committed by GitHub
parent 099731a1b6
commit c4d8c5f6ac

View File

@@ -5,13 +5,20 @@ from __future__ import annotations
from typing import Any
from homeassistant.components.diagnostics import async_redact_data
from homeassistant.const import CONF_ID
from homeassistant.const import CONF_ID, CONF_UNIQUE_ID
from homeassistant.core import HomeAssistant
from .const import CONF_HOUSE_LETTER, CONF_HOUSE_NUMBER, CONF_POST_CODE
from .coordinator import TwenteMilieuConfigEntry
TO_REDACT = {CONF_ID, CONF_POST_CODE, CONF_HOUSE_NUMBER, CONF_HOUSE_LETTER}
TO_REDACT = {
CONF_ID,
CONF_UNIQUE_ID,
CONF_POST_CODE,
CONF_HOUSE_NUMBER,
CONF_HOUSE_LETTER,
"title",
}
async def async_get_config_entry_diagnostics(