homeassistant-stubs 2024.6.0b2__py3-none-any.whl → 2024.6.0b3__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.
- homeassistant-stubs/components/evohome/__init__.pyi +1 -1
- homeassistant-stubs/components/holiday/calendar.pyi +1 -0
- homeassistant-stubs/components/intent_script/__init__.pyi +4 -1
- homeassistant-stubs/components/jewish_calendar/__init__.pyi +5 -1
- homeassistant-stubs/components/jewish_calendar/binary_sensor.pyi +1 -1
- homeassistant-stubs/components/jewish_calendar/sensor.pyi +1 -1
- homeassistant-stubs/components/tag/__init__.pyi +1 -2
- homeassistant-stubs/helpers/llm.pyi +1 -0
- {homeassistant_stubs-2024.6.0b2.dist-info → homeassistant_stubs-2024.6.0b3.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2024.6.0b2.dist-info → homeassistant_stubs-2024.6.0b3.dist-info}/RECORD +12 -12
- {homeassistant_stubs-2024.6.0b2.dist-info → homeassistant_stubs-2024.6.0b3.dist-info}/LICENSE +0 -0
- {homeassistant_stubs-2024.6.0b2.dist-info → homeassistant_stubs-2024.6.0b3.dist-info}/WHEEL +0 -0
@@ -55,7 +55,7 @@ class EvoBroker:
|
|
55
55
|
_location: Incomplete
|
56
56
|
config: Incomplete
|
57
57
|
tcs: Incomplete
|
58
|
-
|
58
|
+
loc_utc_offset: Incomplete
|
59
59
|
temps: Incomplete
|
60
60
|
def __init__(self, hass: HomeAssistant, client: evo.EvohomeClient, client_v1: ev1.EvohomeClient | None, store: Store[dict[str, Any]], params: ConfigType) -> None: ...
|
61
61
|
async def save_auth_tokens(self) -> None: ...
|
@@ -10,6 +10,7 @@ from homeassistant.helpers.device_registry import DeviceEntryType as DeviceEntry
|
|
10
10
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback as AddEntitiesCallback
|
11
11
|
from homeassistant.helpers.event import async_track_point_in_utc_time as async_track_point_in_utc_time
|
12
12
|
|
13
|
+
def _get_obj_holidays_and_language(country: str, province: str | None, language: str) -> tuple[HolidayBase, str]: ...
|
13
14
|
async def async_setup_entry(hass: HomeAssistant, config_entry: ConfigEntry, async_add_entities: AddEntitiesCallback) -> None: ...
|
14
15
|
|
15
16
|
class HolidayCalendarEntity(CalendarEntity):
|
@@ -1,6 +1,6 @@
|
|
1
1
|
from _typeshed import Incomplete
|
2
2
|
from homeassistant.components.script import CONF_MODE as CONF_MODE
|
3
|
-
from homeassistant.const import CONF_TYPE as CONF_TYPE, SERVICE_RELOAD as SERVICE_RELOAD
|
3
|
+
from homeassistant.const import CONF_DESCRIPTION as CONF_DESCRIPTION, CONF_TYPE as CONF_TYPE, SERVICE_RELOAD as SERVICE_RELOAD
|
4
4
|
from homeassistant.core import HomeAssistant as HomeAssistant, ServiceCall as ServiceCall
|
5
5
|
from homeassistant.helpers import intent as intent, script as script, service as service, template as template
|
6
6
|
from homeassistant.helpers.reload import async_integration_yaml_config as async_integration_yaml_config
|
@@ -9,6 +9,7 @@ from typing import TypedDict
|
|
9
9
|
|
10
10
|
_LOGGER: Incomplete
|
11
11
|
DOMAIN: str
|
12
|
+
CONF_PLATFORMS: str
|
12
13
|
CONF_INTENTS: str
|
13
14
|
CONF_SPEECH: str
|
14
15
|
CONF_REPROMPT: str
|
@@ -39,5 +40,7 @@ class _IntentCardData(TypedDict):
|
|
39
40
|
class ScriptIntentHandler(intent.IntentHandler):
|
40
41
|
intent_type: Incomplete
|
41
42
|
config: Incomplete
|
43
|
+
description: Incomplete
|
44
|
+
platforms: Incomplete
|
42
45
|
def __init__(self, intent_type: str, config: ConfigType) -> None: ...
|
43
46
|
async def async_handle(self, intent_obj: intent.Intent) -> intent.IntentResponse: ...
|
@@ -1,9 +1,12 @@
|
|
1
|
+
import homeassistant.helpers.entity_registry as er
|
2
|
+
from .binary_sensor import BINARY_SENSORS as BINARY_SENSORS
|
1
3
|
from .const import CONF_CANDLE_LIGHT_MINUTES as CONF_CANDLE_LIGHT_MINUTES, CONF_DIASPORA as CONF_DIASPORA, CONF_HAVDALAH_OFFSET_MINUTES as CONF_HAVDALAH_OFFSET_MINUTES, DEFAULT_CANDLE_LIGHT as DEFAULT_CANDLE_LIGHT, DEFAULT_DIASPORA as DEFAULT_DIASPORA, DEFAULT_HAVDALAH_OFFSET_MINUTES as DEFAULT_HAVDALAH_OFFSET_MINUTES, DEFAULT_LANGUAGE as DEFAULT_LANGUAGE, DEFAULT_NAME as DEFAULT_NAME, DOMAIN as DOMAIN
|
4
|
+
from .sensor import INFO_SENSORS as INFO_SENSORS, TIME_SENSORS as TIME_SENSORS
|
2
5
|
from _typeshed import Incomplete
|
3
6
|
from hdate import Location
|
4
7
|
from homeassistant.config_entries import ConfigEntry as ConfigEntry, SOURCE_IMPORT as SOURCE_IMPORT
|
5
8
|
from homeassistant.const import CONF_ELEVATION as CONF_ELEVATION, CONF_LANGUAGE as CONF_LANGUAGE, CONF_LATITUDE as CONF_LATITUDE, CONF_LOCATION as CONF_LOCATION, CONF_LONGITUDE as CONF_LONGITUDE, CONF_NAME as CONF_NAME, CONF_TIME_ZONE as CONF_TIME_ZONE, Platform as Platform
|
6
|
-
from homeassistant.core import HomeAssistant as HomeAssistant
|
9
|
+
from homeassistant.core import HomeAssistant as HomeAssistant, callback as callback
|
7
10
|
from homeassistant.helpers.issue_registry import IssueSeverity as IssueSeverity, async_create_issue as async_create_issue
|
8
11
|
from homeassistant.helpers.typing import ConfigType as ConfigType
|
9
12
|
|
@@ -14,3 +17,4 @@ def get_unique_prefix(location: Location, language: str, candle_lighting_offset:
|
|
14
17
|
async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool: ...
|
15
18
|
async def async_setup_entry(hass: HomeAssistant, config_entry: ConfigEntry) -> bool: ...
|
16
19
|
async def async_unload_entry(hass: HomeAssistant, config_entry: ConfigEntry) -> bool: ...
|
20
|
+
def async_update_unique_ids(ent_reg: er.EntityRegistry, new_prefix: str, old_prefix: str) -> None: ...
|
@@ -35,7 +35,7 @@ class JewishCalendarBinarySensor(BinarySensorEntity):
|
|
35
35
|
_candle_lighting_offset: Incomplete
|
36
36
|
_havdalah_offset: Incomplete
|
37
37
|
_update_unsub: Incomplete
|
38
|
-
def __init__(self, data: dict[str, Any], description: JewishCalendarBinarySensorEntityDescription) -> None: ...
|
38
|
+
def __init__(self, entry_id: str, data: dict[str, Any], description: JewishCalendarBinarySensorEntityDescription) -> None: ...
|
39
39
|
@property
|
40
40
|
def is_on(self) -> bool: ...
|
41
41
|
def _get_zmanim(self) -> Zmanim: ...
|
@@ -27,7 +27,7 @@ class JewishCalendarSensor(SensorEntity):
|
|
27
27
|
_havdalah_offset: Incomplete
|
28
28
|
_diaspora: Incomplete
|
29
29
|
_holiday_attrs: Incomplete
|
30
|
-
def __init__(self, data: dict[str, Any], description: SensorEntityDescription) -> None: ...
|
30
|
+
def __init__(self, entry_id: str, data: dict[str, Any], description: SensorEntityDescription) -> None: ...
|
31
31
|
_attr_native_value: Incomplete
|
32
32
|
async def async_update(self) -> None: ...
|
33
33
|
def make_zmanim(self, date: Date) -> Zmanim: ...
|
@@ -60,13 +60,12 @@ class TagEntity(Entity):
|
|
60
60
|
_unrecorded_attributes: Incomplete
|
61
61
|
_attr_translation_key = DOMAIN
|
62
62
|
_attr_should_poll: bool
|
63
|
-
hass: Incomplete
|
64
63
|
_attr_name: Incomplete
|
65
64
|
_tag_id: Incomplete
|
66
65
|
_attr_unique_id: Incomplete
|
67
66
|
_last_device_id: Incomplete
|
68
67
|
_last_scanned: Incomplete
|
69
|
-
def __init__(self,
|
68
|
+
def __init__(self, name: str, tag_id: str, last_scanned: str | None, device_id: str | None) -> None: ...
|
70
69
|
def async_handle_event(self, device_id: str | None, last_scanned: str | None) -> None: ...
|
71
70
|
@property
|
72
71
|
def state(self) -> str | None: ...
|
@@ -7,6 +7,7 @@ from abc import ABC, abstractmethod
|
|
7
7
|
from dataclasses import dataclass
|
8
8
|
from homeassistant.components.climate.intent import INTENT_GET_TEMPERATURE as INTENT_GET_TEMPERATURE
|
9
9
|
from homeassistant.components.conversation.trace import ConversationTraceEventType as ConversationTraceEventType, async_conversation_trace_append as async_conversation_trace_append
|
10
|
+
from homeassistant.components.cover.intent import INTENT_CLOSE_COVER as INTENT_CLOSE_COVER, INTENT_OPEN_COVER as INTENT_OPEN_COVER
|
10
11
|
from homeassistant.components.homeassistant.exposed_entities import async_should_expose as async_should_expose
|
11
12
|
from homeassistant.components.intent import async_device_supports_timers as async_device_supports_timers
|
12
13
|
from homeassistant.components.weather.intent import INTENT_GET_WEATHER as INTENT_GET_WEATHER
|
{homeassistant_stubs-2024.6.0b2.dist-info → homeassistant_stubs-2024.6.0b3.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: homeassistant-stubs
|
3
|
-
Version: 2024.6.
|
3
|
+
Version: 2024.6.0b3
|
4
4
|
Summary: PEP 484 typing stubs for Home Assistant Core
|
5
5
|
Home-page: https://github.com/KapJI/homeassistant-stubs
|
6
6
|
License: MIT
|
@@ -16,7 +16,7 @@ Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.12
|
17
17
|
Classifier: Topic :: Software Development
|
18
18
|
Classifier: Typing :: Typed
|
19
|
-
Requires-Dist: homeassistant (==2024.6.
|
19
|
+
Requires-Dist: homeassistant (==2024.6.0b3)
|
20
20
|
Project-URL: Bug Tracker, https://github.com/KapJI/homeassistant-stubs/issues
|
21
21
|
Project-URL: Repository, https://github.com/KapJI/homeassistant-stubs
|
22
22
|
Project-URL: Release Notes, https://github.com/KapJI/homeassistant-stubs/releases
|
{homeassistant_stubs-2024.6.0b2.dist-info → homeassistant_stubs-2024.6.0b3.dist-info}/RECORD
RENAMED
@@ -951,7 +951,7 @@ homeassistant-stubs/components/evil_genius_labs/coordinator.pyi,sha256=ij1-DuQnW
|
|
951
951
|
homeassistant-stubs/components/evil_genius_labs/diagnostics.pyi,sha256=VkRP3kz6JMwAUCPGbKmdkF_1v4V_KzRdied7lWQ_H6U,534
|
952
952
|
homeassistant-stubs/components/evil_genius_labs/light.pyi,sha256=fz7cXwjUFF3dP8jZ6lgoK9ykbDK1hZ-ufqhQyEc2N_s,1543
|
953
953
|
homeassistant-stubs/components/evil_genius_labs/util.pyi,sha256=7ZsqgdKI-I9sc5gvBqNf5lBqqVn5N-lD_dWJUAsVNd8,340
|
954
|
-
homeassistant-stubs/components/evohome/__init__.pyi,sha256=
|
954
|
+
homeassistant-stubs/components/evohome/__init__.pyi,sha256=0-k5bG18TIaGczAlQcr0osVdhJurNha4ylkLgRU0RLQ,4291
|
955
955
|
homeassistant-stubs/components/evohome/climate.pyi,sha256=eLUYZz321YPqbp01lo0ETIz8iDkUuDAk_C_63RFUDEk,4234
|
956
956
|
homeassistant-stubs/components/evohome/const.pyi,sha256=dkv4fcsH0D-gpiAeGFzA4wUkXcPcFxoTbtgDzM1vwWU,245
|
957
957
|
homeassistant-stubs/components/evohome/water_heater.pyi,sha256=y0LMiUN4L5U_aaV8iTV8RTuhZ9MEnSgA-QmvKUXohOk,2025
|
@@ -1190,7 +1190,7 @@ homeassistant-stubs/components/history_stats/data.pyi,sha256=25Fe3HLUGRhyeY5CrfV
|
|
1190
1190
|
homeassistant-stubs/components/history_stats/helpers.pyi,sha256=rUjQRDtq3uruvmiyMdRokbcsSIWqi7OyIG01ab8iQEw,639
|
1191
1191
|
homeassistant-stubs/components/history_stats/sensor.pyi,sha256=KLB0KsNG2avhmltstMAtU-fncCTO16nXjSjqZOzWUc8,2685
|
1192
1192
|
homeassistant-stubs/components/holiday/__init__.pyi,sha256=Q_fYGejdaBSGFbV1D-W_zmavp1b2Ku0GXHrPwRSoiqk,555
|
1193
|
-
homeassistant-stubs/components/holiday/calendar.pyi,sha256=
|
1193
|
+
homeassistant-stubs/components/holiday/calendar.pyi,sha256=0HT3BRdYprt8cXSZoNqxMfMBlWhyZEWXs1CM6AxGloY,2144
|
1194
1194
|
homeassistant-stubs/components/holiday/config_flow.pyi,sha256=qUo9nwxYGIja9x7dGo4ZMcLiPzYQC94nszhES-ahkGk,1200
|
1195
1195
|
homeassistant-stubs/components/holiday/const.pyi,sha256=se9wTvKnOtS4iGygevgAVf9LNoAfVHN6SS2Dym9n87Q,71
|
1196
1196
|
homeassistant-stubs/components/homeassistant/__init__.pyi,sha256=u8fm-GPVErSIkYTQ20py7dVgdKIM9CbnAXiPEA4hUNY,2559
|
@@ -1385,7 +1385,7 @@ homeassistant-stubs/components/integration/sensor.pyi,sha256=ONreJ17st9UT6-3wt4f
|
|
1385
1385
|
homeassistant-stubs/components/intent/__init__.pyi,sha256=A6Gtd6LZ4_QBfREGumLwYirb5j28auSohMAw0zIM8Sg,1654
|
1386
1386
|
homeassistant-stubs/components/intent/const.pyi,sha256=3O_gvS76ZKuzViWqM8923WbKQEZ9umuZYPeJryQTmco,69
|
1387
1387
|
homeassistant-stubs/components/intent/timers.pyi,sha256=X5ybqSvXghuMKeilq4dJSbjRtD-1KvOB8kQhr69hWWM,5432
|
1388
|
-
homeassistant-stubs/components/intent_script/__init__.pyi,sha256=
|
1388
|
+
homeassistant-stubs/components/intent_script/__init__.pyi,sha256=UGPQYEHhCrXXerB0AozWJWJ5J3o7q8XNJCSyNb3tPns,1721
|
1389
1389
|
homeassistant-stubs/components/ios/__init__.pyi,sha256=4DctBF7aMek5_wmdZmEinOz2Otu9sJB9sSRhNj_kU98,4432
|
1390
1390
|
homeassistant-stubs/components/ios/config_flow.pyi,sha256=jUK7pTnZEh4RzwgIFMwLJk_g6tdTenHbW5iY_cmzed8,109
|
1391
1391
|
homeassistant-stubs/components/ios/const.pyi,sha256=_FGzxCxI1A0E5PxIxsGIiiWqZoOe5fq2_sKT8sOn354,307
|
@@ -1440,11 +1440,11 @@ homeassistant-stubs/components/jellyfin/media_player.pyi,sha256=DKbcSgi2x_BPNrlR
|
|
1440
1440
|
homeassistant-stubs/components/jellyfin/media_source.pyi,sha256=wOc9NfqxjsHNThreo41--IkNrj3yGKQynV33s1DdbxQ,4332
|
1441
1441
|
homeassistant-stubs/components/jellyfin/models.pyi,sha256=AK8n3ICMpx71vkKxoMRvzkH6SkO9bvdtmHcbfVKMvfM,431
|
1442
1442
|
homeassistant-stubs/components/jellyfin/sensor.pyi,sha256=16e5UcqdK3sWCuh7RemQch8BTCyc64Zl5eOrcfOPRIU,1630
|
1443
|
-
homeassistant-stubs/components/jewish_calendar/__init__.pyi,sha256=
|
1444
|
-
homeassistant-stubs/components/jewish_calendar/binary_sensor.pyi,sha256=
|
1443
|
+
homeassistant-stubs/components/jewish_calendar/__init__.pyi,sha256=2vWPgEgHDgoXInqFJFonmK6H6a6KzvvkVTlx15cUZtY,1849
|
1444
|
+
homeassistant-stubs/components/jewish_calendar/binary_sensor.pyi,sha256=sznN6pu9E73VVpuTSNraBIkOxcrZm0KOfcubotql4TQ,2769
|
1445
1445
|
homeassistant-stubs/components/jewish_calendar/config_flow.pyi,sha256=NBElTbv2bk158jJbNUHKVeDuBdAnrFOMzUsQnFZ0jEc,1981
|
1446
1446
|
homeassistant-stubs/components/jewish_calendar/const.pyi,sha256=dH_LaLb-tVwWfIQ0xI5NpEKvHHjg56GFEN2dyzpjHc0,222
|
1447
|
-
homeassistant-stubs/components/jewish_calendar/sensor.pyi,sha256=
|
1447
|
+
homeassistant-stubs/components/jewish_calendar/sensor.pyi,sha256=Xon8CPvekEBLCMRt4Fh6stmyndX_ysBZ0aG7l2qRAjE,2174
|
1448
1448
|
homeassistant-stubs/components/jvc_projector/__init__.pyi,sha256=_LCfIHa7pMk10_9HpM37bJqCTT3IGJre-3OU1OMMjzo,815
|
1449
1449
|
homeassistant-stubs/components/jvc_projector/binary_sensor.pyi,sha256=7b-DFeQN81zJvyWm4taqRmgv-fhw0EomcUpGr4Q1Srg,935
|
1450
1450
|
homeassistant-stubs/components/jvc_projector/config_flow.pyi,sha256=c3NpnCzNZ6LP3QfnGmKNVJOxRlFcZavFkkeuPZ2bSKU,1041
|
@@ -2730,7 +2730,7 @@ homeassistant-stubs/components/systemmonitor/diagnostics.pyi,sha256=3tOFv8ZXiIcv
|
|
2730
2730
|
homeassistant-stubs/components/systemmonitor/repairs.pyi,sha256=TGxQR3xujHlcp6gXfZ4BRvsXz3_rrzw07K9PKH4V5U8,884
|
2731
2731
|
homeassistant-stubs/components/systemmonitor/sensor.pyi,sha256=egACKcKIwiiIUVVbSqwQmkRem4POn5ba6eayirwqE3o,4703
|
2732
2732
|
homeassistant-stubs/components/systemmonitor/util.pyi,sha256=tJIGD7TT7BqPVYhoGQrbYHMKco9nrnUzT1l_5fLKZIo,655
|
2733
|
-
homeassistant-stubs/components/tag/__init__.pyi,sha256=
|
2733
|
+
homeassistant-stubs/components/tag/__init__.pyi,sha256=a9M2V0cGFj2Iq-QVn42cmnOHbVxoUlgB5D9Ju-nnOx8,3761
|
2734
2734
|
homeassistant-stubs/components/tag/const.pyi,sha256=49NoQDGRwRhwzeE6qELOC1Mgq6PniZKfBsbLNQ9EM9I,133
|
2735
2735
|
homeassistant-stubs/components/tag/trigger.pyi,sha256=Qc6KBk5exjqWqYLdXahuNtOk6yVQOM_I5STpXfQz3ac,696
|
2736
2736
|
homeassistant-stubs/components/tailscale/__init__.pyi,sha256=1GacvcYbzVUJgerHKhnWEXIK5D-itQcYi-5P6djVYe8,1269
|
@@ -3312,7 +3312,7 @@ homeassistant-stubs/helpers/intent.pyi,sha256=0BzG3LFc_yNkA9hRRKv8w4NGFJpzldSUCu
|
|
3312
3312
|
homeassistant-stubs/helpers/issue_registry.pyi,sha256=-nFO9SpW-rNL8DusXkjktFMFpN2PwdQpGPBQM36ecDo,4115
|
3313
3313
|
homeassistant-stubs/helpers/json.pyi,sha256=tCdDyP3NYTF3Jb6cASWYnepzie6YLlD0ikMPW7wevKQ,1452
|
3314
3314
|
homeassistant-stubs/helpers/label_registry.pyi,sha256=fDg71PDb5lXKPPZZ0c85retuA53X_YWvkdNlHW1tVI8,2846
|
3315
|
-
homeassistant-stubs/helpers/llm.pyi,sha256=
|
3315
|
+
homeassistant-stubs/helpers/llm.pyi,sha256=s0eseUTXwGs8rtpHWJr2Zqr2_Mcq7CU8MCkK4Ba4DlI,3773
|
3316
3316
|
homeassistant-stubs/helpers/location.pyi,sha256=ynZlBZv3LuyphX4B28y2n2V4IHtJ6ETkUnqOlSYM1FM,655
|
3317
3317
|
homeassistant-stubs/helpers/network.pyi,sha256=34Qq5-Y8aevzqp_21b7L2Woqn-8dOunSTm7uML0_ty0,1773
|
3318
3318
|
homeassistant-stubs/helpers/normalized_name_base_registry.pyi,sha256=LoqQgtUt36e2EvYZisNHOydbZWGIRRSsuGNA01agMVg,704
|
@@ -3398,7 +3398,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=uQjW0KuME-gXVWgYJLNLoRDwDzVhhhgg
|
|
3398
3398
|
homeassistant-stubs/util/yaml/input.pyi,sha256=wuxpKYTXZL4MujFhqjHnRLv4VPYY6QPYd-Zji-Lz9Mo,383
|
3399
3399
|
homeassistant-stubs/util/yaml/loader.pyi,sha256=RTT2312P0TB9bA-rj3xdQK_J6sqVQE4LBJozgLH3oao,4621
|
3400
3400
|
homeassistant-stubs/util/yaml/objects.pyi,sha256=YUlr0nf9ugzJT9J2YHaGV2fXu5opuyNvvHPqNW46m5I,707
|
3401
|
-
homeassistant_stubs-2024.6.
|
3402
|
-
homeassistant_stubs-2024.6.
|
3403
|
-
homeassistant_stubs-2024.6.
|
3404
|
-
homeassistant_stubs-2024.6.
|
3401
|
+
homeassistant_stubs-2024.6.0b3.dist-info/WHEEL,sha256=vVCvjcmxuUltf8cYhJ0sJMRDLr1XsPuxEId8YDzbyCY,88
|
3402
|
+
homeassistant_stubs-2024.6.0b3.dist-info/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
3403
|
+
homeassistant_stubs-2024.6.0b3.dist-info/METADATA,sha256=iaV2O69KkfYE8pF6bK88Ki3LxoXsxi8nhj2HYLJjw3I,3015
|
3404
|
+
homeassistant_stubs-2024.6.0b3.dist-info/RECORD,,
|
{homeassistant_stubs-2024.6.0b2.dist-info → homeassistant_stubs-2024.6.0b3.dist-info}/LICENSE
RENAMED
File without changes
|
File without changes
|