homeassistant-stubs 2025.1.0b1__py3-none-any.whl → 2025.1.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/elevenlabs/__init__.pyi +1 -1
- homeassistant-stubs/components/feedreader/coordinator.pyi +1 -0
- homeassistant-stubs/components/modbus/__init__.pyi +5 -3
- homeassistant-stubs/components/modbus/modbus.pyi +0 -1
- homeassistant-stubs/components/nordpool/__init__.pyi +4 -3
- homeassistant-stubs/components/recorder/migration.pyi +3 -0
- homeassistant-stubs/components/russound_rio/__init__.pyi +1 -1
- homeassistant-stubs/components/russound_rio/config_flow.pyi +1 -1
- homeassistant-stubs/components/russound_rio/const.pyi +0 -1
- {homeassistant_stubs-2025.1.0b1.dist-info → homeassistant_stubs-2025.1.0b3.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2025.1.0b1.dist-info → homeassistant_stubs-2025.1.0b3.dist-info}/RECORD +13 -13
- {homeassistant_stubs-2025.1.0b1.dist-info → homeassistant_stubs-2025.1.0b3.dist-info}/WHEEL +0 -0
- {homeassistant_stubs-2025.1.0b1.dist-info → homeassistant_stubs-2025.1.0b3.dist-info}/licenses/LICENSE +0 -0
@@ -4,7 +4,7 @@ from elevenlabs import AsyncElevenLabs, Model as Model
|
|
4
4
|
from homeassistant.config_entries import ConfigEntry as ConfigEntry
|
5
5
|
from homeassistant.const import CONF_API_KEY as CONF_API_KEY, Platform as Platform
|
6
6
|
from homeassistant.core import HomeAssistant as HomeAssistant
|
7
|
-
from homeassistant.exceptions import ConfigEntryAuthFailed as ConfigEntryAuthFailed, ConfigEntryError as ConfigEntryError
|
7
|
+
from homeassistant.exceptions import ConfigEntryAuthFailed as ConfigEntryAuthFailed, ConfigEntryError as ConfigEntryError, ConfigEntryNotReady as ConfigEntryNotReady
|
8
8
|
from homeassistant.helpers.httpx_client import get_async_client as get_async_client
|
9
9
|
|
10
10
|
PLATFORMS: list[Platform]
|
@@ -3,6 +3,7 @@ from .const import DEFAULT_SCAN_INTERVAL as DEFAULT_SCAN_INTERVAL, DOMAIN as DOM
|
|
3
3
|
from _typeshed import Incomplete
|
4
4
|
from homeassistant.config_entries import ConfigEntry as ConfigEntry
|
5
5
|
from homeassistant.core import HomeAssistant as HomeAssistant, callback as callback
|
6
|
+
from homeassistant.exceptions import ConfigEntryNotReady as ConfigEntryNotReady
|
6
7
|
from homeassistant.helpers.storage import Store as Store
|
7
8
|
from homeassistant.helpers.update_coordinator import DataUpdateCoordinator as DataUpdateCoordinator, UpdateFailed as UpdateFailed
|
8
9
|
from time import struct_time as struct_time
|
@@ -3,8 +3,11 @@ from .modbus import ModbusHub as ModbusHub, async_modbus_setup as async_modbus_s
|
|
3
3
|
from .validators import duplicate_fan_mode_validator as duplicate_fan_mode_validator, duplicate_swing_mode_validator as duplicate_swing_mode_validator, hvac_fixedsize_reglist_validator as hvac_fixedsize_reglist_validator, nan_validator as nan_validator, register_int_list_validator as register_int_list_validator, struct_validator as struct_validator
|
4
4
|
from _typeshed import Incomplete
|
5
5
|
from homeassistant.components.sensor import CONF_STATE_CLASS as CONF_STATE_CLASS
|
6
|
-
from homeassistant.const import CONF_ADDRESS as CONF_ADDRESS, CONF_BINARY_SENSORS as CONF_BINARY_SENSORS, CONF_COMMAND_OFF as CONF_COMMAND_OFF, CONF_COMMAND_ON as CONF_COMMAND_ON, CONF_COUNT as CONF_COUNT, CONF_COVERS as CONF_COVERS, CONF_DELAY as CONF_DELAY, CONF_DEVICE_CLASS as CONF_DEVICE_CLASS, CONF_HOST as CONF_HOST, CONF_LIGHTS as CONF_LIGHTS, CONF_METHOD as CONF_METHOD, CONF_NAME as CONF_NAME, CONF_OFFSET as CONF_OFFSET, CONF_PORT as CONF_PORT, CONF_SCAN_INTERVAL as CONF_SCAN_INTERVAL, CONF_SENSORS as CONF_SENSORS, CONF_SLAVE as CONF_SLAVE, CONF_STRUCTURE as CONF_STRUCTURE, CONF_SWITCHES as CONF_SWITCHES, CONF_TEMPERATURE_UNIT as CONF_TEMPERATURE_UNIT, CONF_TIMEOUT as CONF_TIMEOUT, CONF_TYPE as CONF_TYPE, CONF_UNIQUE_ID as CONF_UNIQUE_ID, CONF_UNIT_OF_MEASUREMENT as CONF_UNIT_OF_MEASUREMENT
|
7
|
-
from homeassistant.core import HomeAssistant as HomeAssistant
|
6
|
+
from homeassistant.const import CONF_ADDRESS as CONF_ADDRESS, CONF_BINARY_SENSORS as CONF_BINARY_SENSORS, CONF_COMMAND_OFF as CONF_COMMAND_OFF, CONF_COMMAND_ON as CONF_COMMAND_ON, CONF_COUNT as CONF_COUNT, CONF_COVERS as CONF_COVERS, CONF_DELAY as CONF_DELAY, CONF_DEVICE_CLASS as CONF_DEVICE_CLASS, CONF_HOST as CONF_HOST, CONF_LIGHTS as CONF_LIGHTS, CONF_METHOD as CONF_METHOD, CONF_NAME as CONF_NAME, CONF_OFFSET as CONF_OFFSET, CONF_PORT as CONF_PORT, CONF_SCAN_INTERVAL as CONF_SCAN_INTERVAL, CONF_SENSORS as CONF_SENSORS, CONF_SLAVE as CONF_SLAVE, CONF_STRUCTURE as CONF_STRUCTURE, CONF_SWITCHES as CONF_SWITCHES, CONF_TEMPERATURE_UNIT as CONF_TEMPERATURE_UNIT, CONF_TIMEOUT as CONF_TIMEOUT, CONF_TYPE as CONF_TYPE, CONF_UNIQUE_ID as CONF_UNIQUE_ID, CONF_UNIT_OF_MEASUREMENT as CONF_UNIT_OF_MEASUREMENT, SERVICE_RELOAD as SERVICE_RELOAD
|
7
|
+
from homeassistant.core import Event as Event, HomeAssistant as HomeAssistant, ServiceCall as ServiceCall
|
8
|
+
from homeassistant.helpers.entity_platform import async_get_platforms as async_get_platforms
|
9
|
+
from homeassistant.helpers.reload import async_integration_yaml_config as async_integration_yaml_config
|
10
|
+
from homeassistant.helpers.service import async_register_admin_service as async_register_admin_service
|
8
11
|
from homeassistant.helpers.typing import ConfigType as ConfigType
|
9
12
|
|
10
13
|
_LOGGER: Incomplete
|
@@ -26,4 +29,3 @@ CONFIG_SCHEMA: Incomplete
|
|
26
29
|
|
27
30
|
def get_hub(hass: HomeAssistant, name: str) -> ModbusHub: ...
|
28
31
|
async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool: ...
|
29
|
-
async def async_reset_platform(hass: HomeAssistant, integration_name: str) -> None: ...
|
@@ -7,7 +7,6 @@ from homeassistant.core import Event as Event, HomeAssistant as HomeAssistant, S
|
|
7
7
|
from homeassistant.helpers.discovery import async_load_platform as async_load_platform
|
8
8
|
from homeassistant.helpers.dispatcher import async_dispatcher_send as async_dispatcher_send
|
9
9
|
from homeassistant.helpers.event import async_call_later as async_call_later
|
10
|
-
from homeassistant.helpers.reload import async_setup_reload_service as async_setup_reload_service
|
11
10
|
from homeassistant.helpers.typing import ConfigType as ConfigType
|
12
11
|
from pymodbus.pdu import ModbusPDU as ModbusPDU
|
13
12
|
from typing import Any, NamedTuple
|
@@ -1,4 +1,4 @@
|
|
1
|
-
from .const import DOMAIN as DOMAIN, PLATFORMS as PLATFORMS
|
1
|
+
from .const import CONF_AREAS as CONF_AREAS, DOMAIN as DOMAIN, LOGGER as LOGGER, PLATFORMS as PLATFORMS
|
2
2
|
from .coordinator import NordPoolDataUpdateCoordinator as NordPoolDataUpdateCoordinator
|
3
3
|
from .services import async_setup_services as async_setup_services
|
4
4
|
from _typeshed import Incomplete
|
@@ -11,5 +11,6 @@ type NordPoolConfigEntry = ConfigEntry[NordPoolDataUpdateCoordinator]
|
|
11
11
|
CONFIG_SCHEMA: Incomplete
|
12
12
|
|
13
13
|
async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool: ...
|
14
|
-
async def async_setup_entry(hass: HomeAssistant,
|
15
|
-
async def async_unload_entry(hass: HomeAssistant,
|
14
|
+
async def async_setup_entry(hass: HomeAssistant, config_entry: NordPoolConfigEntry) -> bool: ...
|
15
|
+
async def async_unload_entry(hass: HomeAssistant, config_entry: NordPoolConfigEntry) -> bool: ...
|
16
|
+
async def cleanup_device(hass: HomeAssistant, config_entry: NordPoolConfigEntry) -> None: ...
|
@@ -243,6 +243,9 @@ class _SchemaVersion46Migrator(_SchemaVersionMigrator, target_version=46):
|
|
243
243
|
class _SchemaVersion47Migrator(_SchemaVersionMigrator, target_version=47):
|
244
244
|
def _apply_update(self) -> None: ...
|
245
245
|
|
246
|
+
class _SchemaVersion48Migrator(_SchemaVersionMigrator, target_version=48):
|
247
|
+
def _apply_update(self) -> None: ...
|
248
|
+
|
246
249
|
def _migrate_statistics_columns_to_timestamp_removing_duplicates(hass: HomeAssistant, instance: Recorder, session_maker: Callable[[], Session], engine: Engine) -> None: ...
|
247
250
|
def _correct_table_character_set_and_collation(table: str, session_maker: Callable[[], Session]) -> None: ...
|
248
251
|
def _wipe_old_string_time_columns(instance: Recorder, engine: Engine, session: Session) -> None: ...
|
@@ -1,4 +1,4 @@
|
|
1
|
-
from .const import
|
1
|
+
from .const import DOMAIN as DOMAIN, RUSSOUND_RIO_EXCEPTIONS as RUSSOUND_RIO_EXCEPTIONS
|
2
2
|
from _typeshed import Incomplete
|
3
3
|
from aiorussound import RussoundClient
|
4
4
|
from homeassistant.config_entries import ConfigEntry as ConfigEntry
|
@@ -1,4 +1,4 @@
|
|
1
|
-
from .const import
|
1
|
+
from .const import DOMAIN as DOMAIN, RUSSOUND_RIO_EXCEPTIONS as RUSSOUND_RIO_EXCEPTIONS
|
2
2
|
from _typeshed import Incomplete
|
3
3
|
from homeassistant.config_entries import ConfigFlow as ConfigFlow, ConfigFlowResult as ConfigFlowResult, SOURCE_RECONFIGURE as SOURCE_RECONFIGURE
|
4
4
|
from homeassistant.const import CONF_HOST as CONF_HOST, CONF_PORT as CONF_PORT
|
{homeassistant_stubs-2025.1.0b1.dist-info → homeassistant_stubs-2025.1.0b3.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: homeassistant-stubs
|
3
|
-
Version: 2025.1.
|
3
|
+
Version: 2025.1.0b3
|
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.12
|
21
|
-
Requires-Dist: homeassistant==2025.1.
|
21
|
+
Requires-Dist: homeassistant==2025.1.0b3
|
22
22
|
Description-Content-Type: text/markdown
|
23
23
|
|
24
24
|
[](https://github.com/KapJI/homeassistant-stubs/actions/workflows/ci.yaml)
|
{homeassistant_stubs-2025.1.0b1.dist-info → homeassistant_stubs-2025.1.0b3.dist-info}/RECORD
RENAMED
@@ -928,7 +928,7 @@ homeassistant-stubs/components/electric_kiwi/coordinator.pyi,sha256=sjRlWNqGnpfP
|
|
928
928
|
homeassistant-stubs/components/electric_kiwi/oauth2.pyi,sha256=Qx_tvwN7FaweC9MyyxQkyrDJHMAsuQpTvWm1cTuqV6g,968
|
929
929
|
homeassistant-stubs/components/electric_kiwi/select.pyi,sha256=xcxUMDwXdIkULDT1hpFpIs4YHsqvwLC1Q4Lw8cNTxO4,1478
|
930
930
|
homeassistant-stubs/components/electric_kiwi/sensor.pyi,sha256=xkH-cnpHwtHzEdnMar3V6Eos9MXh_4DLsaRJfzBWHnw,3798
|
931
|
-
homeassistant-stubs/components/elevenlabs/__init__.pyi,sha256=
|
931
|
+
homeassistant-stubs/components/elevenlabs/__init__.pyi,sha256=m5WVVurCj--H4zYHlZJRTdyD5KnM5WWdIb5yRvnlBDg,1210
|
932
932
|
homeassistant-stubs/components/elevenlabs/config_flow.pyi,sha256=n_jFyzYiji-sWXtpk7tnNooKCHgy_ZuGx-H7aF3vhvA,2250
|
933
933
|
homeassistant-stubs/components/elevenlabs/const.pyi,sha256=180cCMKmlOr46ByAC4Hdo-54bSXHcGg4QihdUDMqtBc,333
|
934
934
|
homeassistant-stubs/components/elevenlabs/tts.pyi,sha256=4wPDD_XSTG58dEiVpoELYUn3v22QotxU2JRga99tt6E,2461
|
@@ -1079,7 +1079,7 @@ homeassistant-stubs/components/fastdotcom/sensor.pyi,sha256=Rij-yOa_SdwXAjN4zn5l
|
|
1079
1079
|
homeassistant-stubs/components/feedreader/__init__.pyi,sha256=sU4oM1qzzbvsJwVG-OSqZAPVrsOTFMWYPLbKQMsIYVo,828
|
1080
1080
|
homeassistant-stubs/components/feedreader/config_flow.pyi,sha256=jJsR_jJPyEDdEHUTKa2VK1mERFnRjPD-38ShocPjnuY,1502
|
1081
1081
|
homeassistant-stubs/components/feedreader/const.pyi,sha256=u_fFhHgf1PjQNAycwcnkdRTUkgTqaAZfyd70GVSZe7s,206
|
1082
|
-
homeassistant-stubs/components/feedreader/coordinator.pyi,sha256=
|
1082
|
+
homeassistant-stubs/components/feedreader/coordinator.pyi,sha256=J9WkVyUN4Helv_VdAVf10CSxrfx7V-hiF5-5C1W7pME,2008
|
1083
1083
|
homeassistant-stubs/components/feedreader/event.pyi,sha256=gAskHysxm3Fe0GqxYZmmTGsSpgwUNDomJmgBEx9uEJc,1491
|
1084
1084
|
homeassistant-stubs/components/file_upload/__init__.pyi,sha256=vPh5IZ3bFfphvRaS7n2gnYCEx3iFHUJtsPFuIPs2C5U,1817
|
1085
1085
|
homeassistant-stubs/components/filesize/__init__.pyi,sha256=N2a-LAhf8G54Y_7mlTfDa71XEgncLqaPKFLH9Q66aMI,539
|
@@ -2016,7 +2016,7 @@ homeassistant-stubs/components/mjpeg/camera.pyi,sha256=2lQg_1hFC3YYJQpzkHCVp5KzA
|
|
2016
2016
|
homeassistant-stubs/components/mjpeg/config_flow.pyi,sha256=eNhYwwhJMVew6-YT2DCYks1m6cbQrNnRM6Q_im32FNw,1681
|
2017
2017
|
homeassistant-stubs/components/mjpeg/const.pyi,sha256=YvpMQFpeOnsOkWtwbb5r9jKhMu6BzBNCN6WHFbGsxeY,239
|
2018
2018
|
homeassistant-stubs/components/mjpeg/util.pyi,sha256=LksjepjHAYEkGQWJh-ln4oI6oVuGr5owU0HhvRtuOsg,163
|
2019
|
-
homeassistant-stubs/components/modbus/__init__.pyi,sha256=
|
2019
|
+
homeassistant-stubs/components/modbus/__init__.pyi,sha256=ihbb_BnyQc__Wd9EaYzDmaJppT_OgjhCYnUrjdwq6jM,5721
|
2020
2020
|
homeassistant-stubs/components/modbus/binary_sensor.pyi,sha256=okH_06zNctK046evtMtywtPWrWoau1xQtLFDBjPXMdw,2512
|
2021
2021
|
homeassistant-stubs/components/modbus/climate.pyi,sha256=8hyt3Qn9F9zUjSDjXSVoILTzw8h_BFJZJ7sl175TitQ,5310
|
2022
2022
|
homeassistant-stubs/components/modbus/const.pyi,sha256=acVaa4E3o-p0BXfc4Ea0Cbpiqwn3rgnVxULK6ViIO4I,2893
|
@@ -2024,7 +2024,7 @@ homeassistant-stubs/components/modbus/cover.pyi,sha256=b9pgmTOFqEtkrZK0R7hodwuKN
|
|
2024
2024
|
homeassistant-stubs/components/modbus/entity.pyi,sha256=3OGsNuPo72-15jWJ5fmsZ31PiOgSRWyn8zrfKb-I-b8,4775
|
2025
2025
|
homeassistant-stubs/components/modbus/fan.pyi,sha256=f7W9472QXXs97DvsPhZQTHJhIra85kRkfGT9nicdImY,1120
|
2026
2026
|
homeassistant-stubs/components/modbus/light.pyi,sha256=q9cS9rgMIf3LP2t2ms4csYoyLjx73BBGAu60wsiXhX8,998
|
2027
|
-
homeassistant-stubs/components/modbus/modbus.pyi,sha256=
|
2027
|
+
homeassistant-stubs/components/modbus/modbus.pyi,sha256=aWDfCfeaS6K5Xv57XUn_1sqRbuhZTOF_kynGd5pJUWk,3237
|
2028
2028
|
homeassistant-stubs/components/modbus/sensor.pyi,sha256=UZaTtvnceQm-dAemUnximwIGfV1UAEgV2CqsnXzwJss,2628
|
2029
2029
|
homeassistant-stubs/components/modbus/switch.pyi,sha256=bdLuvq8T6Vu5GHv0xl6bUbkj3a6fGbE2Uglfo_HQcGA,873
|
2030
2030
|
homeassistant-stubs/components/modbus/validators.pyi,sha256=WT-IHI5LD35y8AT6kY7D5-lyx29dNJKmHKiiy-BW1Gg,2305
|
@@ -2257,7 +2257,7 @@ homeassistant-stubs/components/nissan_leaf/entity.pyi,sha256=qTtjLdjD5PirTVBlIXu
|
|
2257
2257
|
homeassistant-stubs/components/nissan_leaf/sensor.pyi,sha256=ppZuj6y8HUW5FCaI1C5fb_nYqnDgSMdJxDTQKbkJX7c,2009
|
2258
2258
|
homeassistant-stubs/components/nissan_leaf/switch.pyi,sha256=y5XInVgtFJf7S9d8X4cbWg99lOBRoSs7nSS23X1W9eY,1206
|
2259
2259
|
homeassistant-stubs/components/no_ip/__init__.pyi,sha256=LEgsEXyJpLsJ5B6QgcMM9YJULXbzfTxbrLxjm-Ritjw,950
|
2260
|
-
homeassistant-stubs/components/nordpool/__init__.pyi,sha256=
|
2260
|
+
homeassistant-stubs/components/nordpool/__init__.pyi,sha256=8uAyXvrq8Qo_qYiYN_mM4cRQ-6mn6SfF939h2G6xTjY,1031
|
2261
2261
|
homeassistant-stubs/components/nordpool/config_flow.pyi,sha256=udO0aaYsxvYA14qTruERZpIgY_diI55BXiyd2Z70O4Y,1133
|
2262
2262
|
homeassistant-stubs/components/nordpool/const.pyi,sha256=lIZlTpUpKSr8y9OYVa-kOPMlm9MWTvHXyObTTmS078s,201
|
2263
2263
|
homeassistant-stubs/components/nordpool/coordinator.pyi,sha256=Miv3LXdlXCc58kLijZRyJ5ZxijcTMtl5foA4Z-zHw6k,1444
|
@@ -2593,7 +2593,7 @@ homeassistant-stubs/components/recorder/db_schema.pyi,sha256=XkruEKb16838TCWluSR
|
|
2593
2593
|
homeassistant-stubs/components/recorder/entity_registry.pyi,sha256=KQkJUlsXDdEHhnzy2f58byStPFplR3BoANWzwPIhbEM,578
|
2594
2594
|
homeassistant-stubs/components/recorder/executor.pyi,sha256=jZUJLt2lp1TuQy9NnaK8zOaENozPLxbvsUzZQu9i0RQ,667
|
2595
2595
|
homeassistant-stubs/components/recorder/filters.pyi,sha256=l8qnsQC0mhUcCJauqv6IDLFT0_EV_iX2u6iz3yr0Lww,2703
|
2596
|
-
homeassistant-stubs/components/recorder/migration.pyi,sha256=
|
2596
|
+
homeassistant-stubs/components/recorder/migration.pyi,sha256=TdicoT610z7vYpYQD-oUsNBDbehBKx9Hk8gZPF4VWQc,21019
|
2597
2597
|
homeassistant-stubs/components/recorder/pool.pyi,sha256=NEBEP2CTRuAx3Nq2zXeOCfk7n4qVWVZ4hjzYgk-RxDE,1219
|
2598
2598
|
homeassistant-stubs/components/recorder/purge.pyi,sha256=rFgTAV4Un0h6OP7FdKTOa6eiP_I-Owf6dXYC2bR2JZ4,5546
|
2599
2599
|
homeassistant-stubs/components/recorder/queries.pyi,sha256=185rzuArHlphbVOiLbOszfTLTNtER-CAoykwrs9T3ig,4904
|
@@ -2791,9 +2791,9 @@ homeassistant-stubs/components/rss_feed_template/__init__.pyi,sha256=fzCjBZuWlW_
|
|
2791
2791
|
homeassistant-stubs/components/rtsp_to_webrtc/__init__.pyi,sha256=1Ix2dkOSmQ77g15vPjqOHx_rk0I8uzZ_RXBT43RCql8,916
|
2792
2792
|
homeassistant-stubs/components/rtsp_to_webrtc/config_flow.pyi,sha256=--sGFoQewrktDQxTHjq-4Z9Fefi2h4jDWXRlWAOk85w,1405
|
2793
2793
|
homeassistant-stubs/components/rtsp_to_webrtc/diagnostics.pyi,sha256=G-0k9BYO30ZiwSNkYGMRool9Xd5ozDAqS2HxNrWoImY,270
|
2794
|
-
homeassistant-stubs/components/russound_rio/__init__.pyi,sha256=
|
2795
|
-
homeassistant-stubs/components/russound_rio/config_flow.pyi,sha256=
|
2796
|
-
homeassistant-stubs/components/russound_rio/const.pyi,sha256=
|
2794
|
+
homeassistant-stubs/components/russound_rio/__init__.pyi,sha256=HrAWm1wpjjUhNWXKTaze3P4AO3IE1sUCwBNmJVU83V8,751
|
2795
|
+
homeassistant-stubs/components/russound_rio/config_flow.pyi,sha256=2FkMpyaj3uF8_sXC99lQoqQ-X4eV7f4WeC25pRVV2Po,783
|
2796
|
+
homeassistant-stubs/components/russound_rio/const.pyi,sha256=r51I9VjP6b0kv66U_dcUFW_WxcQ5mmDM1WT4fvS0Z-k,217
|
2797
2797
|
homeassistant-stubs/components/russound_rio/diagnostics.pyi,sha256=Q-Od238dhF6X4-wwK9Sadf_YEs-2MxqNaEJ5WkLl-Uc,260
|
2798
2798
|
homeassistant-stubs/components/russound_rio/entity.pyi,sha256=UgmJtNwpnu82WN4XFfZi2yIQ1Cd6g4usA_TyaKYfHuY,1366
|
2799
2799
|
homeassistant-stubs/components/russound_rio/media_player.pyi,sha256=WFJI6SyQXJHjTyxqByscoJstRGcGCaIbh9-f5zH24E0,2862
|
@@ -3881,7 +3881,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=uQjW0KuME-gXVWgYJLNLoRDwDzVhhhgg
|
|
3881
3881
|
homeassistant-stubs/util/yaml/input.pyi,sha256=wuxpKYTXZL4MujFhqjHnRLv4VPYY6QPYd-Zji-Lz9Mo,383
|
3882
3882
|
homeassistant-stubs/util/yaml/loader.pyi,sha256=FpRpxb-ZvfthDdO6Js0JqWtzlQfKDPP7nY5yOXp3604,3917
|
3883
3883
|
homeassistant-stubs/util/yaml/objects.pyi,sha256=YUlr0nf9ugzJT9J2YHaGV2fXu5opuyNvvHPqNW46m5I,707
|
3884
|
-
homeassistant_stubs-2025.1.
|
3885
|
-
homeassistant_stubs-2025.1.
|
3886
|
-
homeassistant_stubs-2025.1.
|
3887
|
-
homeassistant_stubs-2025.1.
|
3884
|
+
homeassistant_stubs-2025.1.0b3.dist-info/METADATA,sha256=sWiWKFhRCXk5g2o94Wh2_GoMWWnk98ClcHXoViewdDU,2956
|
3885
|
+
homeassistant_stubs-2025.1.0b3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
3886
|
+
homeassistant_stubs-2025.1.0b3.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
3887
|
+
homeassistant_stubs-2025.1.0b3.dist-info/RECORD,,
|
File without changes
|
File without changes
|