custom_components/bahmcloud_store/custom_repo_view.py aktualisiert
This commit is contained in:
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user