homeassistant-stubs 2025.3.2__py3-none-any.whl → 2025.3.4__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3,6 +3,7 @@ from _typeshed import Incomplete
3
3
  from homeassistant.const import UnitOfTemperature as UnitOfTemperature, UnitOfTime as UnitOfTime, UnitOfVolume as UnitOfVolume
4
4
 
5
5
  DOMAIN: str
6
+ API_DEFAULT_RETRY_AFTER: int
6
7
  APPLIANCES_WITH_PROGRAMS: Incomplete
7
8
  UNIT_MAP: Incomplete
8
9
  BSH_POWER_ON: str
@@ -1,4 +1,4 @@
1
- from .const import APPLIANCES_WITH_PROGRAMS as APPLIANCES_WITH_PROGRAMS, DOMAIN as DOMAIN
1
+ from .const import API_DEFAULT_RETRY_AFTER as API_DEFAULT_RETRY_AFTER, APPLIANCES_WITH_PROGRAMS as APPLIANCES_WITH_PROGRAMS, DOMAIN as DOMAIN
2
2
  from .utils import get_dict_from_home_connect_error as get_dict_from_home_connect_error
3
3
  from _typeshed import Incomplete
4
4
  from aiohomeconnect.client import Client as HomeConnectClient
@@ -8,7 +8,7 @@ from collections.abc import Callable as Callable
8
8
  from dataclasses import dataclass
9
9
  from homeassistant.config_entries import ConfigEntry as ConfigEntry
10
10
  from homeassistant.core import CALLBACK_TYPE as CALLBACK_TYPE, HomeAssistant as HomeAssistant, callback as callback
11
- from homeassistant.exceptions import ConfigEntryAuthFailed as ConfigEntryAuthFailed
11
+ from homeassistant.exceptions import ConfigEntryAuthFailed as ConfigEntryAuthFailed, ConfigEntryNotReady as ConfigEntryNotReady
12
12
  from homeassistant.helpers.update_coordinator import DataUpdateCoordinator as DataUpdateCoordinator, UpdateFailed as UpdateFailed
13
13
  from propcache.api import cached_property
14
14
  from typing import Any
@@ -48,6 +48,8 @@ class HomeConnectCoordinator(DataUpdateCoordinator[dict[str, HomeConnectApplianc
48
48
  @callback
49
49
  def _call_all_event_listeners_for_appliance(self, ha_id: str) -> None: ...
50
50
  async def _async_update_data(self) -> dict[str, HomeConnectApplianceData]: ...
51
+ async def async_setup(self) -> None: ...
52
+ async def _async_setup(self) -> None: ...
51
53
  async def _get_appliance_data(self, appliance: HomeAppliance, appliance_data_to_update: HomeConnectApplianceData | None = None) -> HomeConnectApplianceData: ...
52
54
  async def get_options_definitions(self, ha_id: str, program_key: ProgramKey) -> dict[OptionKey, ProgramDefinitionOption]: ...
53
55
  async def update_options(self, ha_id: str, event_key: EventKey, program_key: ProgramKey) -> None: ...
@@ -1,16 +1,19 @@
1
1
  import abc
2
- from .const import DOMAIN as DOMAIN
2
+ from .const import API_DEFAULT_RETRY_AFTER as API_DEFAULT_RETRY_AFTER, DOMAIN as DOMAIN
3
3
  from .coordinator import HomeConnectApplianceData as HomeConnectApplianceData, HomeConnectCoordinator as HomeConnectCoordinator
4
4
  from .utils import get_dict_from_home_connect_error as get_dict_from_home_connect_error
5
5
  from _typeshed import Incomplete
6
6
  from abc import abstractmethod
7
7
  from aiohomeconnect.model import OptionKey
8
+ from collections.abc import Callable as Callable, Coroutine
8
9
  from homeassistant.const import STATE_UNAVAILABLE as STATE_UNAVAILABLE
9
10
  from homeassistant.core import callback as callback
10
11
  from homeassistant.exceptions import HomeAssistantError as HomeAssistantError
11
12
  from homeassistant.helpers.device_registry import DeviceInfo as DeviceInfo
12
13
  from homeassistant.helpers.entity import EntityDescription as EntityDescription
14
+ from homeassistant.helpers.event import async_call_later as async_call_later
13
15
  from homeassistant.helpers.update_coordinator import CoordinatorEntity as CoordinatorEntity
16
+ from typing import Any, Concatenate
14
17
 
15
18
  _LOGGER: Incomplete
16
19
 
@@ -39,3 +42,5 @@ class HomeConnectOptionEntity(HomeConnectEntity, metaclass=abc.ABCMeta):
39
42
  async def async_set_option(self, value: str | float | bool) -> None: ...
40
43
  @property
41
44
  def bsh_key(self) -> OptionKey: ...
45
+
46
+ def constraint_fetcher[_EntityT: HomeConnectEntity, **_P](func: Callable[Concatenate[_EntityT, _P], Coroutine[Any, Any, Any]]) -> Callable[Concatenate[_EntityT, _P], Coroutine[Any, Any, None]]: ...
@@ -1,7 +1,7 @@
1
1
  from .common import setup_home_connect_entry as setup_home_connect_entry
2
2
  from .const import DOMAIN as DOMAIN, SVE_TRANSLATION_KEY_SET_SETTING as SVE_TRANSLATION_KEY_SET_SETTING, SVE_TRANSLATION_PLACEHOLDER_ENTITY_ID as SVE_TRANSLATION_PLACEHOLDER_ENTITY_ID, SVE_TRANSLATION_PLACEHOLDER_KEY as SVE_TRANSLATION_PLACEHOLDER_KEY, SVE_TRANSLATION_PLACEHOLDER_VALUE as SVE_TRANSLATION_PLACEHOLDER_VALUE, UNIT_MAP as UNIT_MAP
3
3
  from .coordinator import HomeConnectApplianceData as HomeConnectApplianceData, HomeConnectConfigEntry as HomeConnectConfigEntry
4
- from .entity import HomeConnectEntity as HomeConnectEntity, HomeConnectOptionEntity as HomeConnectOptionEntity
4
+ from .entity import HomeConnectEntity as HomeConnectEntity, HomeConnectOptionEntity as HomeConnectOptionEntity, constraint_fetcher as constraint_fetcher
5
5
  from .utils import get_dict_from_home_connect_error as get_dict_from_home_connect_error
6
6
  from _typeshed import Incomplete
7
7
  from aiohomeconnect.model import GetSetting as GetSetting
@@ -21,6 +21,8 @@ async def async_setup_entry(hass: HomeAssistant, entry: HomeConnectConfigEntry,
21
21
 
22
22
  class HomeConnectNumberEntity(HomeConnectEntity, NumberEntity):
23
23
  async def async_set_native_value(self, value: float) -> None: ...
24
+ _attr_native_unit_of_measurement: Incomplete
25
+ @constraint_fetcher
24
26
  async def async_fetch_constraints(self) -> None: ...
25
27
  _attr_native_max_value: Incomplete
26
28
  _attr_native_min_value: Incomplete
@@ -28,7 +30,6 @@ class HomeConnectNumberEntity(HomeConnectEntity, NumberEntity):
28
30
  def set_constraints(self, setting: GetSetting) -> None: ...
29
31
  _attr_native_value: Incomplete
30
32
  def update_native_value(self) -> None: ...
31
- _attr_native_unit_of_measurement: Incomplete
32
33
  async def async_added_to_hass(self) -> None: ...
33
34
 
34
35
  class HomeConnectOptionNumberEntity(HomeConnectOptionEntity, NumberEntity):
@@ -1,7 +1,7 @@
1
1
  from .common import setup_home_connect_entry as setup_home_connect_entry
2
2
  from .const import APPLIANCES_WITH_PROGRAMS as APPLIANCES_WITH_PROGRAMS, AVAILABLE_MAPS_ENUM as AVAILABLE_MAPS_ENUM, BEAN_AMOUNT_OPTIONS as BEAN_AMOUNT_OPTIONS, BEAN_CONTAINER_OPTIONS as BEAN_CONTAINER_OPTIONS, CLEANING_MODE_OPTIONS as CLEANING_MODE_OPTIONS, COFFEE_MILK_RATIO_OPTIONS as COFFEE_MILK_RATIO_OPTIONS, COFFEE_TEMPERATURE_OPTIONS as COFFEE_TEMPERATURE_OPTIONS, DOMAIN as DOMAIN, DRYING_TARGET_OPTIONS as DRYING_TARGET_OPTIONS, FLOW_RATE_OPTIONS as FLOW_RATE_OPTIONS, HOT_WATER_TEMPERATURE_OPTIONS as HOT_WATER_TEMPERATURE_OPTIONS, INTENSIVE_LEVEL_OPTIONS as INTENSIVE_LEVEL_OPTIONS, PROGRAMS_TRANSLATION_KEYS_MAP as PROGRAMS_TRANSLATION_KEYS_MAP, SPIN_SPEED_OPTIONS as SPIN_SPEED_OPTIONS, SVE_TRANSLATION_KEY_SET_SETTING as SVE_TRANSLATION_KEY_SET_SETTING, SVE_TRANSLATION_PLACEHOLDER_ENTITY_ID as SVE_TRANSLATION_PLACEHOLDER_ENTITY_ID, SVE_TRANSLATION_PLACEHOLDER_KEY as SVE_TRANSLATION_PLACEHOLDER_KEY, SVE_TRANSLATION_PLACEHOLDER_PROGRAM as SVE_TRANSLATION_PLACEHOLDER_PROGRAM, SVE_TRANSLATION_PLACEHOLDER_VALUE as SVE_TRANSLATION_PLACEHOLDER_VALUE, TEMPERATURE_OPTIONS as TEMPERATURE_OPTIONS, TRANSLATION_KEYS_PROGRAMS_MAP as TRANSLATION_KEYS_PROGRAMS_MAP, VARIO_PERFECT_OPTIONS as VARIO_PERFECT_OPTIONS, VENTING_LEVEL_OPTIONS as VENTING_LEVEL_OPTIONS, WARMING_LEVEL_OPTIONS as WARMING_LEVEL_OPTIONS
3
3
  from .coordinator import HomeConnectApplianceData as HomeConnectApplianceData, HomeConnectConfigEntry as HomeConnectConfigEntry, HomeConnectCoordinator as HomeConnectCoordinator
4
- from .entity import HomeConnectEntity as HomeConnectEntity, HomeConnectOptionEntity as HomeConnectOptionEntity
4
+ from .entity import HomeConnectEntity as HomeConnectEntity, HomeConnectOptionEntity as HomeConnectOptionEntity, constraint_fetcher as constraint_fetcher
5
5
  from .utils import bsh_key_to_translation_key as bsh_key_to_translation_key, get_dict_from_home_connect_error as get_dict_from_home_connect_error
6
6
  from _typeshed import Incomplete
7
7
  from aiohomeconnect.client import Client as HomeConnectClient
@@ -15,6 +15,7 @@ from homeassistant.exceptions import HomeAssistantError as HomeAssistantError
15
15
  from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback as AddConfigEntryEntitiesCallback
16
16
  from typing import Any
17
17
 
18
+ _LOGGER: Incomplete
18
19
  PARALLEL_UPDATES: int
19
20
  FUNCTIONAL_LIGHT_COLOR_TEMPERATURE_ENUM: Incomplete
20
21
  AMBIENT_LIGHT_COLOR_TEMPERATURE_ENUM: Incomplete
@@ -48,12 +49,15 @@ class HomeConnectProgramSelectEntity(HomeConnectEntity, SelectEntity):
48
49
 
49
50
  class HomeConnectSelectEntity(HomeConnectEntity, SelectEntity):
50
51
  entity_description: HomeConnectSelectEntityDescription
52
+ _original_option_keys: set[str | None]
51
53
  def __init__(self, coordinator: HomeConnectCoordinator, appliance: HomeConnectApplianceData, desc: HomeConnectSelectEntityDescription) -> None: ...
52
54
  async def async_select_option(self, option: str) -> None: ...
53
55
  _attr_current_option: Incomplete
54
56
  def update_native_value(self) -> None: ...
55
- _attr_options: Incomplete
56
57
  async def async_added_to_hass(self) -> None: ...
58
+ _attr_options: Incomplete
59
+ @constraint_fetcher
60
+ async def async_fetch_options(self) -> None: ...
57
61
 
58
62
  class HomeConnectSelectOptionEntity(HomeConnectOptionEntity, SelectEntity):
59
63
  entity_description: HomeConnectSelectEntityDescription
@@ -1,7 +1,7 @@
1
1
  from .common import setup_home_connect_entry as setup_home_connect_entry
2
2
  from .const import APPLIANCES_WITH_PROGRAMS as APPLIANCES_WITH_PROGRAMS, BSH_OPERATION_STATE_FINISHED as BSH_OPERATION_STATE_FINISHED, BSH_OPERATION_STATE_PAUSE as BSH_OPERATION_STATE_PAUSE, BSH_OPERATION_STATE_RUN as BSH_OPERATION_STATE_RUN, UNIT_MAP as UNIT_MAP
3
3
  from .coordinator import HomeConnectApplianceData as HomeConnectApplianceData, HomeConnectConfigEntry as HomeConnectConfigEntry
4
- from .entity import HomeConnectEntity as HomeConnectEntity
4
+ from .entity import HomeConnectEntity as HomeConnectEntity, constraint_fetcher as constraint_fetcher
5
5
  from _typeshed import Incomplete
6
6
  from dataclasses import dataclass
7
7
  from homeassistant.components.sensor import SensorDeviceClass as SensorDeviceClass, SensorEntity as SensorEntity, SensorEntityDescription as SensorEntityDescription, SensorStateClass as SensorStateClass
@@ -10,6 +10,7 @@ from homeassistant.core import HomeAssistant as HomeAssistant, callback as callb
10
10
  from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback as AddConfigEntryEntitiesCallback
11
11
  from homeassistant.util import slugify as slugify
12
12
 
13
+ _LOGGER: Incomplete
13
14
  PARALLEL_UPDATES: int
14
15
  EVENT_OPTIONS: Incomplete
15
16
 
@@ -33,6 +34,7 @@ class HomeConnectSensor(HomeConnectEntity, SensorEntity):
33
34
  def _update_native_value(self, status: str | float) -> None: ...
34
35
  _attr_native_unit_of_measurement: Incomplete
35
36
  async def async_added_to_hass(self) -> None: ...
37
+ @constraint_fetcher
36
38
  async def fetch_unit(self) -> None: ...
37
39
 
38
40
  class HomeConnectProgramSensor(HomeConnectSensor):
@@ -27,7 +27,6 @@ class RoborockMap(RoborockCoordinatedEntityV1, ImageEntity):
27
27
  def __init__(self, config_entry: ConfigEntry, unique_id: str, coordinator: RoborockDataUpdateCoordinator, map_flag: int, map_name: str, parser: Callable[[bytes], bytes | None]) -> None: ...
28
28
  @property
29
29
  def is_selected(self) -> bool: ...
30
- def is_map_valid(self) -> bool: ...
31
30
  _attr_image_last_updated: Incomplete
32
31
  async def async_added_to_hass(self) -> None: ...
33
32
  def _handle_coordinator_update(self) -> None: ...
@@ -11,8 +11,8 @@ from pysuez import SuezClient
11
11
  class SuezWaterAggregatedAttributes:
12
12
  this_month_consumption: dict[str, float]
13
13
  previous_month_consumption: dict[str, float]
14
- last_year_overall: dict[str, float]
15
- this_year_overall: dict[str, float]
14
+ last_year_overall: int
15
+ this_year_overall: int
16
16
  history: dict[str, float]
17
17
  highest_monthly_consumption: float
18
18
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: homeassistant-stubs
3
- Version: 2025.3.2
3
+ Version: 2025.3.4
4
4
  Summary: PEP 484 typing stubs for Home Assistant Core
5
5
  Project-URL: Homepage, https://github.com/KapJI/homeassistant-stubs
6
6
  Project-URL: Bug Tracker, https://github.com/KapJI/homeassistant-stubs/issues
@@ -18,7 +18,7 @@ Classifier: Topic :: Home Automation
18
18
  Classifier: Topic :: Software Development
19
19
  Classifier: Typing :: Typed
20
20
  Requires-Python: <3.14,>=3.13
21
- Requires-Dist: homeassistant==2025.3.2
21
+ Requires-Dist: homeassistant==2025.3.4
22
22
  Description-Content-Type: text/markdown
23
23
 
24
24
  [![CI](https://github.com/KapJI/homeassistant-stubs/actions/workflows/ci.yaml/badge.svg)](https://github.com/KapJI/homeassistant-stubs/actions/workflows/ci.yaml)
@@ -1413,14 +1413,14 @@ homeassistant-stubs/components/home_connect/binary_sensor.pyi,sha256=Awu4R78hWKY
1413
1413
  homeassistant-stubs/components/home_connect/button.pyi,sha256=za8DHahnqmmUj1PaKjh5INTbEM9u-y-PZYGMAwWhvWU,2121
1414
1414
  homeassistant-stubs/components/home_connect/common.pyi,sha256=DdXLnrGG35ZIj1RKm0hnwJ8mx5x0Id1bRkrqF5V6j5Q,1821
1415
1415
  homeassistant-stubs/components/home_connect/config_flow.pyi,sha256=ByiAF8LD3ej3wG1wcxEFwqLJa0YJsRHb2W6cLdNUUiU,790
1416
- homeassistant-stubs/components/home_connect/const.pyi,sha256=8bxsgBaBFnRzEvhtS4V-2V-WX30OmQ99UiXT1yTcu6M,2057
1417
- homeassistant-stubs/components/home_connect/coordinator.pyi,sha256=mptoexJ8K0b6DO1a6mm_kOQyLg07DJRqNDlK2wYxpLU,3226
1416
+ homeassistant-stubs/components/home_connect/const.pyi,sha256=_7d2FmNHgqsbLuoD4qQP502Hkuorclm8QpjpuTPboxg,2086
1417
+ homeassistant-stubs/components/home_connect/coordinator.pyi,sha256=fUbDOU6HxnCFNAf0hXgR1k4MzNqmQOXdgfR1rIJHUTA,3413
1418
1418
  homeassistant-stubs/components/home_connect/diagnostics.pyi,sha256=xd5stDFXPm86S-CJNctSEzLbByNTM253HDD34lifBHI,773
1419
- homeassistant-stubs/components/home_connect/entity.pyi,sha256=XAhOkMF6D5u5ucAN2QVZdxcH_VuAs2SVvidaFHpRTwU,1824
1419
+ homeassistant-stubs/components/home_connect/entity.pyi,sha256=6sFAQOslnAWPMcTrDeqVMVaMtb7ungUCPdUxBH1XLvY,2248
1420
1420
  homeassistant-stubs/components/home_connect/light.pyi,sha256=aUO_O9-KVDBXEPzhBHURwBXfzcEdUIGecxu_x07hVTE,2791
1421
- homeassistant-stubs/components/home_connect/number.pyi,sha256=eFe1R2KL9nX0VVDKNB8DAZ-7n8kar9qk85mImeNXZjc,2712
1422
- homeassistant-stubs/components/home_connect/select.pyi,sha256=2zDBcWJ_K3g9NuW1jNy3heYSXDLfQ1p2b3jvEE3oEFc,5172
1423
- homeassistant-stubs/components/home_connect/sensor.pyi,sha256=HdIltdKSygkefC6q-7dv49S2F4pGvDSSBDodvnNrh6g,2671
1421
+ homeassistant-stubs/components/home_connect/number.pyi,sha256=ZksqgrqSVp448NsS4VO2q3QDSSWEd63IEbx-6sVP4-s,2778
1422
+ homeassistant-stubs/components/home_connect/select.pyi,sha256=DssSZX8zCyezSOL_NSwf8VI6RZIHD5vBBCfSqrYFmOw,5354
1423
+ homeassistant-stubs/components/home_connect/sensor.pyi,sha256=qLfUdOg4tg3mjYuwxUErdreWk5amhRK5pdQAf6-lmGI,2757
1424
1424
  homeassistant-stubs/components/home_connect/switch.pyi,sha256=rnAImJ7OPAFmFNGZ7Fd5sq_01ETK56eUZBLbYQ-e0po,3970
1425
1425
  homeassistant-stubs/components/home_connect/time.pyi,sha256=BYJyXF8emgFF5SjoSwpGSttYp7j81XLBPxISgMEAxnI,1721
1426
1426
  homeassistant-stubs/components/home_connect/utils.pyi,sha256=2FCMFNNiLYdWwptLrh3HnTf-yDf2tJa1pp8jLPk_WiU,277
@@ -2928,7 +2928,7 @@ homeassistant-stubs/components/roborock/const.pyi,sha256=SAstjD3OGuxxKmVH-bRpRwT
2928
2928
  homeassistant-stubs/components/roborock/coordinator.pyi,sha256=byLm1Az4LwSOF7dZ9lhau7nwwh65xs5KPzCKk-a20yk,3667
2929
2929
  homeassistant-stubs/components/roborock/diagnostics.pyi,sha256=-3WvDcLI0Qv0p6P9R8eSQZtgFZll5d9gKTEDBx6RmEA,522
2930
2930
  homeassistant-stubs/components/roborock/entity.pyi,sha256=O5kGsR8u9oDJJD4XrGeIz_KvGzToTzqXZHZtW--EFQo,3083
2931
- homeassistant-stubs/components/roborock/image.pyi,sha256=qH5oa9LOKNWg84P7IkPSYlR_wtiHFXyqTgE5VFSynOc,2034
2931
+ homeassistant-stubs/components/roborock/image.pyi,sha256=SFZ1OxpmjQuk83xAGBY01LJqf8BAkj8lpd1IiOHe8IE,1994
2932
2932
  homeassistant-stubs/components/roborock/models.pyi,sha256=JafSkeURg1toz6HiSKYY2U68yeX93xxTccWNIy_7WRo,700
2933
2933
  homeassistant-stubs/components/roborock/number.pyi,sha256=_WIhENoXQxL2JPvUH3kQnPLUXRxWsL2cN7jpsA6TN-c,1809
2934
2934
  homeassistant-stubs/components/roborock/roborock_storage.pyi,sha256=FsdJgkm0Nut_y3RSlYjNU0MRxRXKJ0sNjStE9AMecjk,946
@@ -3277,7 +3277,7 @@ homeassistant-stubs/components/stt/models.pyi,sha256=rFHiDpdc3Innt-LrHpSPAs9S0oV
3277
3277
  homeassistant-stubs/components/suez_water/__init__.pyi,sha256=WHJrjXWEQIdmIb0TqQNsM0NhfkbDaPDJbc0DIvfsKio,649
3278
3278
  homeassistant-stubs/components/suez_water/config_flow.pyi,sha256=_mtxPi7LLm3rBCdlcHHHgTPzh3lhZ_7SfLjz4F_ZeC0,832
3279
3279
  homeassistant-stubs/components/suez_water/const.pyi,sha256=3GEj4WYZJO3A8er0k08Z5ax7C14f0VEQith8vLDV1T8,101
3280
- homeassistant-stubs/components/suez_water/coordinator.pyi,sha256=gk0VeqqeY-SxVP9n0iO-ILP42vdJBfRYVzCRSZh7geU,1451
3280
+ homeassistant-stubs/components/suez_water/coordinator.pyi,sha256=f298dwPnOwhCfzN_kDCY1ChGA3Onx07Pn5t4EPkblRg,1425
3281
3281
  homeassistant-stubs/components/suez_water/sensor.pyi,sha256=BJNgNV-9T0Q77RHeJ5PApRipZBa_W6qvpvjY6njM3Wk,2026
3282
3282
  homeassistant-stubs/components/sun/__init__.pyi,sha256=EUVhcV5qcDQ2pQAVjx5X1EYHQsYnoBQLZh7-0SmPiG0,856
3283
3283
  homeassistant-stubs/components/sun/config_flow.pyi,sha256=DD2TEAsZtPJtWgKOBE-J87rnWH0h7OVOwZi8HPrzSzk,454
@@ -4079,7 +4079,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=uQjW0KuME-gXVWgYJLNLoRDwDzVhhhgg
4079
4079
  homeassistant-stubs/util/yaml/input.pyi,sha256=wuxpKYTXZL4MujFhqjHnRLv4VPYY6QPYd-Zji-Lz9Mo,383
4080
4080
  homeassistant-stubs/util/yaml/loader.pyi,sha256=9MJS3AZNCemqAEU41KVJox1f16OceP64SNXE1-Z37kU,4117
4081
4081
  homeassistant-stubs/util/yaml/objects.pyi,sha256=EmJiT8WnVUHa5dkbYzXtWzu5mhO1YG5bBnEAIF0XLAU,665
4082
- homeassistant_stubs-2025.3.2.dist-info/METADATA,sha256=hK8aK3g-dgHBg55VcX0U4oNyXl0z9UiGyqxSiyOW8eY,2952
4083
- homeassistant_stubs-2025.3.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
4084
- homeassistant_stubs-2025.3.2.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
4085
- homeassistant_stubs-2025.3.2.dist-info/RECORD,,
4082
+ homeassistant_stubs-2025.3.4.dist-info/METADATA,sha256=XkX7STlhu5cQ4ppCepVfDZeS7fUEX5-ytMCdSsE9Two,2952
4083
+ homeassistant_stubs-2025.3.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
4084
+ homeassistant_stubs-2025.3.4.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
4085
+ homeassistant_stubs-2025.3.4.dist-info/RECORD,,