From 39cb22374d20ec16e163bab07ce194b6a36c34bd Mon Sep 17 00:00:00 2001 From: jan iversen Date: Fri, 23 Apr 2021 11:08:58 +0200 Subject: [PATCH] Remove HomeAssistantType from typing.py as it is no longer used. (#49593) --- homeassistant/helpers/typing.py | 1 - 1 file changed, 1 deletion(-) diff --git a/homeassistant/helpers/typing.py b/homeassistant/helpers/typing.py index 279bc0f686f..54e63ab49ef 100644 --- a/homeassistant/helpers/typing.py +++ b/homeassistant/helpers/typing.py @@ -9,7 +9,6 @@ ConfigType = Dict[str, Any] ContextType = homeassistant.core.Context DiscoveryInfoType = Dict[str, Any] EventType = homeassistant.core.Event -HomeAssistantType = homeassistant.core.HomeAssistant ServiceCallType = homeassistant.core.ServiceCall ServiceDataType = Dict[str, Any] StateType = Union[None, str, int, float]