diff --git a/custom_components/bahmcloud_store/custom_repo_view.py b/custom_components/bahmcloud_store/custom_repo_view.py index 348b4b2..0f0b3ca 100644 --- a/custom_components/bahmcloud_store/custom_repo_view.py +++ b/custom_components/bahmcloud_store/custom_repo_view.py @@ -1,8 +1,11 @@ from __future__ import annotations +from typing import TYPE_CHECKING + from homeassistant.components.http import HomeAssistantView -from .core import BCSCore +if TYPE_CHECKING: + from .core import BCSCore class BCSCustomRepoView(HomeAssistantView): @@ -13,7 +16,7 @@ class BCSCustomRepoView(HomeAssistantView): name = "bcs_custom_repo_api" url = "/api/bcs/custom_repo" - def __init__(self, core: BCSCore) -> None: + def __init__(self, core: "BCSCore") -> None: self.core = core async def delete(self, request):