Explicitly pass in the config_entry in github coordinator (#137834)

explicitly pass in the config_entry in coordinator
This commit is contained in:
Michael
2025-02-08 13:17:25 +01:00
committed by GitHub
parent 0efdceef27
commit 13f6f045f5
4 changed files with 15 additions and 11 deletions
+1 -2
View File
@@ -18,9 +18,8 @@ from homeassistant.helpers.entity_platform import AddEntitiesCallback
from homeassistant.helpers.typing import StateType
from homeassistant.helpers.update_coordinator import CoordinatorEntity
from . import GithubConfigEntry
from .const import DOMAIN
from .coordinator import GitHubDataUpdateCoordinator
from .coordinator import GithubConfigEntry, GitHubDataUpdateCoordinator
@dataclass(frozen=True, kw_only=True)