@@ -147,9 +147,7 @@ async def _send_remote_temperature(self) -> None:
147147 )
148148 # Tell AC to use internal sensor temporarily, but don't disable remote mode
149149 # so we automatically resume when the entity becomes available
150- await self .hass .async_add_executor_job (
151- self .controller .set_current_temperature , None
152- )
150+ await self .hass .async_add_executor_job (self .controller .set_current_temperature , None )
153151 return
154152
155153 if state .state in (STATE_UNAVAILABLE , STATE_UNKNOWN ):
@@ -161,9 +159,7 @@ async def _send_remote_temperature(self) -> None:
161159 )
162160 # Tell AC to use internal sensor temporarily, but don't disable remote mode
163161 # so we automatically resume when the entity becomes available
164- await self .hass .async_add_executor_job (
165- self .controller .set_current_temperature , None
166- )
162+ await self .hass .async_add_executor_job (self .controller .set_current_temperature , None )
167163 return
168164
169165 try :
@@ -186,6 +182,4 @@ async def _send_remote_temperature(self) -> None:
186182 )
187183 # Tell AC to use internal sensor temporarily, but don't disable remote mode
188184 # Invalid values might be transient (e.g., during sensor reconfiguration)
189- await self .hass .async_add_executor_job (
190- self .controller .set_current_temperature , None
191- )
185+ await self .hass .async_add_executor_job (self .controller .set_current_temperature , None )
0 commit comments