homeassistant-stubs 2025.9.0b4__py3-none-any.whl → 2025.9.0b6__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/deconz/hub/hub.pyi +0 -1
- homeassistant-stubs/components/deconz/services.pyi +0 -1
- homeassistant-stubs/components/modbus/entity.pyi +4 -11
- {homeassistant_stubs-2025.9.0b4.dist-info → homeassistant_stubs-2025.9.0b6.dist-info}/METADATA +2 -2
- {homeassistant_stubs-2025.9.0b4.dist-info → homeassistant_stubs-2025.9.0b6.dist-info}/RECORD +7 -7
- {homeassistant_stubs-2025.9.0b4.dist-info → homeassistant_stubs-2025.9.0b6.dist-info}/WHEEL +0 -0
- {homeassistant_stubs-2025.9.0b4.dist-info → homeassistant_stubs-2025.9.0b6.dist-info}/licenses/LICENSE +0 -0
|
@@ -6,7 +6,6 @@ from _typeshed import Incomplete
|
|
|
6
6
|
from collections.abc import Callable as Callable
|
|
7
7
|
from homeassistant.config_entries import SOURCE_HASSIO as SOURCE_HASSIO
|
|
8
8
|
from homeassistant.core import Event as Event, HomeAssistant as HomeAssistant, callback as callback
|
|
9
|
-
from homeassistant.helpers.device_registry import CONNECTION_NETWORK_MAC as CONNECTION_NETWORK_MAC
|
|
10
9
|
from homeassistant.helpers.dispatcher import async_dispatcher_send as async_dispatcher_send
|
|
11
10
|
from pydeconz import DeconzSession as DeconzSession
|
|
12
11
|
from pydeconz.interfaces.api_handlers import APIHandler as APIHandler, GroupedAPIHandler as GroupedAPIHandler
|
|
@@ -4,7 +4,6 @@ from .hub import DeconzHub as DeconzHub
|
|
|
4
4
|
from .util import get_master_hub as get_master_hub
|
|
5
5
|
from _typeshed import Incomplete
|
|
6
6
|
from homeassistant.core import HomeAssistant as HomeAssistant, ServiceCall as ServiceCall, callback as callback
|
|
7
|
-
from homeassistant.helpers.device_registry import CONNECTION_NETWORK_MAC as CONNECTION_NETWORK_MAC
|
|
8
7
|
from homeassistant.util.read_only_dict import ReadOnlyDict as ReadOnlyDict
|
|
9
8
|
|
|
10
9
|
DECONZ_SERVICES: str
|
|
@@ -34,19 +34,11 @@ class BasePlatform(Entity, metaclass=abc.ABCMeta):
|
|
|
34
34
|
def __init__(self, hass: HomeAssistant, hub: ModbusHub, entry: dict[str, Any]) -> None: ...
|
|
35
35
|
@abstractmethod
|
|
36
36
|
async def _async_update(self) -> None: ...
|
|
37
|
-
async def async_update(self) -> None: ...
|
|
38
|
-
async def async_local_update(self, now: datetime | None = None) -> None: ...
|
|
37
|
+
async def async_update(self, now: datetime | None = None) -> None: ...
|
|
38
|
+
async def async_local_update(self, now: datetime | None = None, cancel_pending_update: bool = False) -> None: ...
|
|
39
39
|
async def async_will_remove_from_hass(self) -> None: ...
|
|
40
40
|
@callback
|
|
41
|
-
def
|
|
42
|
-
async def _async_update_write_state(self) -> None: ...
|
|
43
|
-
async def _async_update_if_not_in_progress(self, now: datetime | None = None) -> None: ...
|
|
44
|
-
@callback
|
|
45
|
-
def async_run(self) -> None: ...
|
|
46
|
-
@callback
|
|
47
|
-
def _async_schedule_future_update(self, delay: float) -> None: ...
|
|
48
|
-
@callback
|
|
49
|
-
def _async_cancel_future_pending_update(self) -> None: ...
|
|
41
|
+
def async_disable(self) -> None: ...
|
|
50
42
|
async def async_await_connection(self, _now: Any) -> None: ...
|
|
51
43
|
async def async_base_added_to_hass(self) -> None: ...
|
|
52
44
|
|
|
@@ -79,6 +71,7 @@ class BaseSwitch(BasePlatform, ToggleEntity, RestoreEntity):
|
|
|
79
71
|
def __init__(self, hass: HomeAssistant, hub: ModbusHub, config: dict) -> None: ...
|
|
80
72
|
async def async_added_to_hass(self) -> None: ...
|
|
81
73
|
_attr_available: bool
|
|
74
|
+
_cancel_call: Incomplete
|
|
82
75
|
async def async_turn(self, command: int) -> None: ...
|
|
83
76
|
async def async_turn_off(self, **kwargs: Any) -> None: ...
|
|
84
77
|
async def _async_update(self) -> None: ...
|
{homeassistant_stubs-2025.9.0b4.dist-info → homeassistant_stubs-2025.9.0b6.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: homeassistant-stubs
|
|
3
|
-
Version: 2025.9.
|
|
3
|
+
Version: 2025.9.0b6
|
|
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.9.
|
|
21
|
+
Requires-Dist: homeassistant==2025.9.0b6
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
23
23
|
|
|
24
24
|
[](https://github.com/KapJI/homeassistant-stubs/actions/workflows/ci.yaml)
|
{homeassistant_stubs-2025.9.0b4.dist-info → homeassistant_stubs-2025.9.0b6.dist-info}/RECORD
RENAMED
|
@@ -813,14 +813,14 @@ homeassistant-stubs/components/deconz/number.pyi,sha256=xAxrGTiZvls7WENH9YeDZhMF
|
|
|
813
813
|
homeassistant-stubs/components/deconz/scene.pyi,sha256=Hql1nVKmP4Zm_LkFo5GceCHdgXT-BVeTRvw21NvNvzk,751
|
|
814
814
|
homeassistant-stubs/components/deconz/select.pyi,sha256=_N6sXwQZfNW22e0rF8KZMXJpA4xvBg-6SrqQjSx6sng,2348
|
|
815
815
|
homeassistant-stubs/components/deconz/sensor.pyi,sha256=rTXUPJAUYM1t0s2sWN6S4MDpppO10qUVxLb4NNZYWbk,4232
|
|
816
|
-
homeassistant-stubs/components/deconz/services.pyi,sha256
|
|
816
|
+
homeassistant-stubs/components/deconz/services.pyi,sha256=qQWrTrbWdUzTYzBQWMWLc-jf7Eh2YbCU5m5hsu11NE4,1064
|
|
817
817
|
homeassistant-stubs/components/deconz/siren.pyi,sha256=XrxYudrQKTKJaMswXU_vHY3EsqVYkwZBxoWRhQCbz8M,1067
|
|
818
818
|
homeassistant-stubs/components/deconz/switch.pyi,sha256=zGmh7k-XJJ2DB59MqFv7OUjNoMdem2d7cqQjY6hH_wA,975
|
|
819
819
|
homeassistant-stubs/components/deconz/util.pyi,sha256=__A1ZXZi9CDtDyoZUrIOl7NtqR9s8Uzdf-OrqFb27kE,350
|
|
820
820
|
homeassistant-stubs/components/deconz/hub/__init__.pyi,sha256=DRSMBnb25-1zhnDoYaxeIXxpEq3OJwv3iZpPgF-Y4DM,133
|
|
821
821
|
homeassistant-stubs/components/deconz/hub/api.pyi,sha256=gfQaCcxZGBQKS0eoPPYLtAZecXRMbzg3aERfNNakWew,508
|
|
822
822
|
homeassistant-stubs/components/deconz/hub/config.pyi,sha256=Cu3a1_ML0X0gy_TqqP9LsE0JMVsLSYherLwYxeHnacs,852
|
|
823
|
-
homeassistant-stubs/components/deconz/hub/hub.pyi,sha256=
|
|
823
|
+
homeassistant-stubs/components/deconz/hub/hub.pyi,sha256=QyxjB2HpDKk4ASvab7DH5Tj5j4N6rEe-OYta2dZliWk,2564
|
|
824
824
|
homeassistant-stubs/components/default_config/__init__.pyi,sha256=pnttmkFK--Ke54sn4Q4ArshR8Z-H9-bcIVaIvhP893U,277
|
|
825
825
|
homeassistant-stubs/components/demo/__init__.pyi,sha256=V6qzFFr3NNC-qM-UJputm7HZbZ6xyrdT-TOD2lfBHn8,1151
|
|
826
826
|
homeassistant-stubs/components/demo/air_quality.pyi,sha256=ScX0oZZubGa81YrI8X-iOi8FOrn6NhZHpnkON8QGv0w,973
|
|
@@ -2306,7 +2306,7 @@ homeassistant-stubs/components/modbus/binary_sensor.pyi,sha256=vSj9OcyCMSp5KWrZP
|
|
|
2306
2306
|
homeassistant-stubs/components/modbus/climate.pyi,sha256=p33nUBWF5x3k31zVyHQsiva7gdriVg_fnRIExT1NRPw,6416
|
|
2307
2307
|
homeassistant-stubs/components/modbus/const.pyi,sha256=3hAM9z0HMqTMOA9DENsoqyeyRqCmDeSKhsUGq0dAVco,3612
|
|
2308
2308
|
homeassistant-stubs/components/modbus/cover.pyi,sha256=layBR9EOJ5E5vRkJ9qLn0-lzShnhIm9VzJboSqpw2zo,2353
|
|
2309
|
-
homeassistant-stubs/components/modbus/entity.pyi,sha256=
|
|
2309
|
+
homeassistant-stubs/components/modbus/entity.pyi,sha256=PUilxEVeisy1h--UGoogT0aBuKvyf7Nrp1IwtNQF3f4,4897
|
|
2310
2310
|
homeassistant-stubs/components/modbus/fan.pyi,sha256=f7W9472QXXs97DvsPhZQTHJhIra85kRkfGT9nicdImY,1120
|
|
2311
2311
|
homeassistant-stubs/components/modbus/light.pyi,sha256=HQNrohjB8zG1Kak0E_cCTKSXyy-7QnkYNEalCbWPaVI,2750
|
|
2312
2312
|
homeassistant-stubs/components/modbus/modbus.pyi,sha256=cc-TiLWrTXVvhpB9FyDt2n4BOLZbDi0DW2PAnYziCj4,3449
|
|
@@ -4390,7 +4390,7 @@ homeassistant-stubs/util/yaml/dumper.pyi,sha256=vaIsOJB6hkwj7GLyo3YCNZCTwVgvvODy
|
|
|
4390
4390
|
homeassistant-stubs/util/yaml/input.pyi,sha256=j_ejvjaXDxeNYtA4hb9tNUPsQdi7wogbmTQXsqmt5xo,253
|
|
4391
4391
|
homeassistant-stubs/util/yaml/loader.pyi,sha256=_HvI0rXv3kQRsSRV-VZGWVyGjD0SAzLkPfq0A3jksrs,850
|
|
4392
4392
|
homeassistant-stubs/util/yaml/objects.pyi,sha256=Ynjx0JaWF3u82Pj8aXO-YeqrkzNO8t-Nn7G7rr_X-oI,206
|
|
4393
|
-
homeassistant_stubs-2025.9.
|
|
4394
|
-
homeassistant_stubs-2025.9.
|
|
4395
|
-
homeassistant_stubs-2025.9.
|
|
4396
|
-
homeassistant_stubs-2025.9.
|
|
4393
|
+
homeassistant_stubs-2025.9.0b6.dist-info/METADATA,sha256=QZgDmRsYU8VVr_P7vWdqME0faDhqrNR2uZsVW6ONsvQ,2952
|
|
4394
|
+
homeassistant_stubs-2025.9.0b6.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
4395
|
+
homeassistant_stubs-2025.9.0b6.dist-info/licenses/LICENSE,sha256=_kHFjg-MAmJ-lXc7HiEjUzD3vZutVYKUVZZpAWcIuqo,1075
|
|
4396
|
+
homeassistant_stubs-2025.9.0b6.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|