File tree 1 file changed +10
-1
lines changed
custom_components/stiebel_eltron_isg
1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change 12
12
from homeassistant .core import HomeAssistant
13
13
from homeassistant .helpers .entity_platform import AddEntitiesCallback
14
14
15
+ from custom_components .stiebel_eltron_isg .coordinator import (
16
+ StiebelEltronModbusDataCoordinator ,
17
+ )
18
+
15
19
from .const import (
16
20
AREA_COOLING_TARGET_FLOW_TEMPERATURE ,
17
21
AREA_COOLING_TARGET_ROOM_TEMPERATURE ,
@@ -375,7 +379,12 @@ async def async_setup_entry(
375
379
class StiebelEltronISGNumberEntity (StiebelEltronISGEntity , NumberEntity ):
376
380
"""stiebel_eltron_isg select class."""
377
381
378
- def __init__ (self , coordinator , config_entry , description ):
382
+ def __init__ (
383
+ self ,
384
+ coordinator : StiebelEltronModbusDataCoordinator ,
385
+ config_entry : StiebelEltronISGIntegrationConfigEntry ,
386
+ description : NumberEntityDescription ,
387
+ ):
379
388
"""Initialize the sensor."""
380
389
self .entity_description = description
381
390
super ().__init__ (coordinator , config_entry )
You can’t perform that action at this time.
0 commit comments