fix pipeline
This commit is contained in:
		@@ -6,6 +6,7 @@ from homeassistant.components.number import (
 | 
			
		||||
    NumberEntity,
 | 
			
		||||
    NumberEntityDescription,
 | 
			
		||||
    NumberDeviceClass,
 | 
			
		||||
    NumberMode,
 | 
			
		||||
)
 | 
			
		||||
from homeassistant.config_entries import ConfigEntry
 | 
			
		||||
from homeassistant.const import UnitOfTime, UnitOfTemperature
 | 
			
		||||
@@ -200,7 +201,7 @@ NUMBERS: dict[str, tuple[NumberEntityDescription, ...]] = {
 | 
			
		||||
            key="settings.tempSel",
 | 
			
		||||
            name="Target Temperature",
 | 
			
		||||
            icon="mdi:thermometer",
 | 
			
		||||
            mode="slider",
 | 
			
		||||
            mode=NumberMode.SLIDER,
 | 
			
		||||
            device_class=NumberDeviceClass.TEMPERATURE,
 | 
			
		||||
            native_unit_of_measurement=UnitOfTemperature.CELSIUS,
 | 
			
		||||
            translation_key="target_temperature",
 | 
			
		||||
 
 | 
			
		||||
@@ -316,7 +316,7 @@ class HonSelectEntity(HonEntity, SelectEntity):
 | 
			
		||||
        command = key_parts[0]
 | 
			
		||||
 | 
			
		||||
        if (self.entity_description.send_key_only):
 | 
			
		||||
            await self._device.commands[command].send_specific(key_parts[1])
 | 
			
		||||
            await self._device.commands[command].send_specific([key_parts[1]])
 | 
			
		||||
        else:
 | 
			
		||||
            await self._device.commands[command].send()
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user