homeassistant-stubs 2025.11.0b0__py3-none-any.whl → 2025.11.0b1__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.
Potentially problematic release.
This version of homeassistant-stubs might be problematic. Click here for more details.
- homeassistant-stubs/components/libre_hardware_monitor/sensor.pyi +3 -6
- homeassistant-stubs/components/miele/sensor.pyi +7 -8
- {homeassistant_stubs-2025.11.0b0.dist-info → homeassistant_stubs-2025.11.0b1.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2025.11.0b0.dist-info → homeassistant_stubs-2025.11.0b1.dist-info}/RECORD +6 -6
- {homeassistant_stubs-2025.11.0b0.dist-info → homeassistant_stubs-2025.11.0b1.dist-info}/WHEEL +0 -0
- {homeassistant_stubs-2025.11.0b0.dist-info → homeassistant_stubs-2025.11.0b1.dist-info}/licenses/LICENSE +0 -0
|
@@ -7,6 +7,7 @@ from homeassistant.helpers.device_registry import DeviceInfo as DeviceInfo
|
|
|
7
7
|
from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback as AddConfigEntryEntitiesCallback
|
|
8
8
|
from homeassistant.helpers.update_coordinator import CoordinatorEntity as CoordinatorEntity
|
|
9
9
|
from librehardwaremonitor_api.model import LibreHardwareMonitorSensorData as LibreHardwareMonitorSensorData
|
|
10
|
+
from typing import Any
|
|
10
11
|
|
|
11
12
|
PARALLEL_UPDATES: int
|
|
12
13
|
STATE_MIN_VALUE: str
|
|
@@ -18,8 +19,8 @@ class LibreHardwareMonitorSensor(CoordinatorEntity[LibreHardwareMonitorCoordinat
|
|
|
18
19
|
_attr_state_class: Incomplete
|
|
19
20
|
_attr_has_entity_name: bool
|
|
20
21
|
_attr_name: str
|
|
21
|
-
|
|
22
|
-
_attr_extra_state_attributes: dict[str,
|
|
22
|
+
_attr_native_value: str | None
|
|
23
|
+
_attr_extra_state_attributes: dict[str, Any]
|
|
23
24
|
_attr_native_unit_of_measurement: Incomplete
|
|
24
25
|
_attr_unique_id: str
|
|
25
26
|
_sensor_id: str
|
|
@@ -27,7 +28,3 @@ class LibreHardwareMonitorSensor(CoordinatorEntity[LibreHardwareMonitorCoordinat
|
|
|
27
28
|
def __init__(self, coordinator: LibreHardwareMonitorCoordinator, entry_id: str, sensor_data: LibreHardwareMonitorSensorData) -> None: ...
|
|
28
29
|
@callback
|
|
29
30
|
def _handle_coordinator_update(self) -> None: ...
|
|
30
|
-
@property
|
|
31
|
-
def native_value(self) -> str | None: ...
|
|
32
|
-
@staticmethod
|
|
33
|
-
def _format_number_value(number_str: str) -> str: ...
|
|
@@ -5,7 +5,7 @@ from _typeshed import Incomplete
|
|
|
5
5
|
from collections.abc import Callable as Callable, Mapping
|
|
6
6
|
from dataclasses import dataclass
|
|
7
7
|
from homeassistant.components.sensor import RestoreSensor as RestoreSensor, SensorDeviceClass as SensorDeviceClass, SensorEntity as SensorEntity, SensorEntityDescription as SensorEntityDescription, SensorStateClass as SensorStateClass
|
|
8
|
-
from homeassistant.const import EntityCategory as EntityCategory, PERCENTAGE as PERCENTAGE, REVOLUTIONS_PER_MINUTE as REVOLUTIONS_PER_MINUTE,
|
|
8
|
+
from homeassistant.const import EntityCategory as EntityCategory, PERCENTAGE as PERCENTAGE, REVOLUTIONS_PER_MINUTE as REVOLUTIONS_PER_MINUTE, UnitOfEnergy as UnitOfEnergy, UnitOfTemperature as UnitOfTemperature, UnitOfTime as UnitOfTime, UnitOfVolume as UnitOfVolume
|
|
9
9
|
from homeassistant.core import HomeAssistant as HomeAssistant, callback as callback
|
|
10
10
|
from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback as AddConfigEntryEntitiesCallback
|
|
11
11
|
from homeassistant.helpers.typing import StateType as StateType
|
|
@@ -52,12 +52,11 @@ class MieleSensor(MieleEntity, SensorEntity):
|
|
|
52
52
|
def extra_state_attributes(self) -> Mapping[str, Any] | None: ...
|
|
53
53
|
|
|
54
54
|
class MieleRestorableSensor(MieleSensor, RestoreSensor):
|
|
55
|
-
|
|
56
|
-
def __init__(self, coordinator: MieleDataUpdateCoordinator, device_id: str, description: MieleSensorDescription) -> None: ...
|
|
55
|
+
_attr_native_value: StateType
|
|
57
56
|
async def async_added_to_hass(self) -> None: ...
|
|
58
57
|
@property
|
|
59
58
|
def native_value(self) -> StateType: ...
|
|
60
|
-
def
|
|
59
|
+
def _update_native_value(self) -> None: ...
|
|
61
60
|
@callback
|
|
62
61
|
def _handle_coordinator_update(self) -> None: ...
|
|
63
62
|
|
|
@@ -91,10 +90,10 @@ class MieleProgramIdSensor(MieleSensor):
|
|
|
91
90
|
def options(self) -> list[str]: ...
|
|
92
91
|
|
|
93
92
|
class MieleTimeSensor(MieleRestorableSensor):
|
|
94
|
-
|
|
95
|
-
def
|
|
93
|
+
_attr_native_value: Incomplete
|
|
94
|
+
def _update_native_value(self) -> None: ...
|
|
96
95
|
|
|
97
96
|
class MieleConsumptionSensor(MieleRestorableSensor):
|
|
98
97
|
_is_reporting: bool
|
|
99
|
-
|
|
100
|
-
def
|
|
98
|
+
_attr_native_value: Incomplete
|
|
99
|
+
def _update_native_value(self) -> None: ...
|
{homeassistant_stubs-2025.11.0b0.dist-info → homeassistant_stubs-2025.11.0b1.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: homeassistant-stubs
|
|
3
|
-
Version: 2025.11.
|
|
3
|
+
Version: 2025.11.0b1
|
|
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.13.2
|
|
21
|
-
Requires-Dist: homeassistant==2025.11.
|
|
21
|
+
Requires-Dist: homeassistant==2025.11.0b1
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
23
23
|
|
|
24
24
|
[](https://github.com/KapJI/homeassistant-stubs/actions/workflows/ci.yaml)
|
{homeassistant_stubs-2025.11.0b0.dist-info → homeassistant_stubs-2025.11.0b1.dist-info}/RECORD
RENAMED
|
@@ -2072,7 +2072,7 @@ homeassistant-stubs/components/libre_hardware_monitor/__init__.pyi,sha256=naY66a
|
|
|
2072
2072
|
homeassistant-stubs/components/libre_hardware_monitor/config_flow.pyi,sha256=O9PaoEJQ7yMZEoC_FZnSY9wWLbHx7t_1AqCtGC_cCME,568
|
|
2073
2073
|
homeassistant-stubs/components/libre_hardware_monitor/const.pyi,sha256=FMmN_IHEefocpiN2P6v_XMmKU57WTiH6eUe9VVpHlwo,75
|
|
2074
2074
|
homeassistant-stubs/components/libre_hardware_monitor/coordinator.pyi,sha256=RsFnu38MEsui7XXIhmtEfDmd1hDgbtyAIXcbN3maed8,1457
|
|
2075
|
-
homeassistant-stubs/components/libre_hardware_monitor/sensor.pyi,sha256=
|
|
2075
|
+
homeassistant-stubs/components/libre_hardware_monitor/sensor.pyi,sha256=5DP86-bdF90tduiFvfCoChlp0hMaBYLG7E_SXoZSfiM,1662
|
|
2076
2076
|
homeassistant-stubs/components/lidarr/__init__.pyi,sha256=TuNrBgLKGMPkGQvr6AXs9xqhQBngovDcwuXYru8zaXY,1082
|
|
2077
2077
|
homeassistant-stubs/components/lidarr/config_flow.pyi,sha256=NG_6GccmGAYFQrFDI3cZhSGOpGbxEsMZ_KVD4Xz-KX4,1026
|
|
2078
2078
|
homeassistant-stubs/components/lidarr/const.pyi,sha256=MUFppTd9V832TgSCE2uEZ84Nh8aME1BD8KSMk8k_22A,259
|
|
@@ -2319,7 +2319,7 @@ homeassistant-stubs/components/miele/diagnostics.pyi,sha256=6OC75uoLx_ThOr5dpU_X
|
|
|
2319
2319
|
homeassistant-stubs/components/miele/entity.pyi,sha256=penQRD1B7hMzlBUUg8AfGWjLjgxwuvg8BENDNhH8Fr0,1287
|
|
2320
2320
|
homeassistant-stubs/components/miele/fan.pyi,sha256=i3YyHE0xob1KGjKMMX_VKNm7LWfGqLO2CsOIYWPQMMg,2142
|
|
2321
2321
|
homeassistant-stubs/components/miele/light.pyi,sha256=fO6mCecQrdBd-mfhejCkaqM0OC4hOrd5hgQ4GTF9hdg,1833
|
|
2322
|
-
homeassistant-stubs/components/miele/sensor.pyi,sha256=
|
|
2322
|
+
homeassistant-stubs/components/miele/sensor.pyi,sha256=tuaBfgDnrXU6oJCejAZTLG_LihtpmholCda06IIA29Q,4585
|
|
2323
2323
|
homeassistant-stubs/components/miele/services.pyi,sha256=YECvzInZBjPtfyCjZtRoMLbz9RMmQvQhCgcng6Hq_Es,1287
|
|
2324
2324
|
homeassistant-stubs/components/miele/switch.pyi,sha256=0xPwdCEs9d98ODecU6lsPu-F1DLoi0ds88_9YixlcYo,2322
|
|
2325
2325
|
homeassistant-stubs/components/miele/vacuum.pyi,sha256=SMh0cynu-5mUpnJLYWWxTaFqQUd2jZqlsTmMyW4ZSjM,2886
|
|
@@ -4485,7 +4485,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=vaIsOJB6hkwj7GLyo3YCNZCTwVgvvODy
|
|
|
4485
4485
|
homeassistant-stubs/util/yaml/input.pyi,sha256=j_ejvjaXDxeNYtA4hb9tNUPsQdi7wogbmTQXsqmt5xo,253
|
|
4486
4486
|
homeassistant-stubs/util/yaml/loader.pyi,sha256=_HvI0rXv3kQRsSRV-VZGWVyGjD0SAzLkPfq0A3jksrs,850
|
|
4487
4487
|
homeassistant-stubs/util/yaml/objects.pyi,sha256=Ynjx0JaWF3u82Pj8aXO-YeqrkzNO8t-Nn7G7rr_X-oI,206
|
|
4488
|
-
homeassistant_stubs-2025.11.
|
|
4489
|
-
homeassistant_stubs-2025.11.
|
|
4490
|
-
homeassistant_stubs-2025.11.
|
|
4491
|
-
homeassistant_stubs-2025.11.
|
|
4488
|
+
homeassistant_stubs-2025.11.0b1.dist-info/METADATA,sha256=VDo7pWCmLwltBrkLBE4SeyK91YcwKr2Yz8Z-JzfhF7A,2954
|
|
4489
|
+
homeassistant_stubs-2025.11.0b1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
4490
|
+
homeassistant_stubs-2025.11.0b1.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
|
4491
|
+
homeassistant_stubs-2025.11.0b1.dist-info/RECORD,,
|
{homeassistant_stubs-2025.11.0b0.dist-info → homeassistant_stubs-2025.11.0b1.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|