Skip to content

Commit e8156ad

Browse files
authored
Update mypy to 0.981 (home-assistant#79115)
1 parent 1f6d19b commit e8156ad

15 files changed

+75
-75
lines changed

homeassistant/components/esphome/climate.py

+9-9
Original file line numberDiff line numberDiff line change
@@ -212,13 +212,13 @@ def supported_features(self) -> int:
212212
features |= ClimateEntityFeature.SWING_MODE
213213
return features
214214

215-
@property # type: ignore[misc]
215+
@property
216216
@esphome_state_property
217217
def hvac_mode(self) -> str | None:
218218
"""Return current operation ie. heat, cool, idle."""
219219
return _CLIMATE_MODES.from_esphome(self._state.mode)
220220

221-
@property # type: ignore[misc]
221+
@property
222222
@esphome_state_property
223223
def hvac_action(self) -> str | None:
224224
"""Return current action."""
@@ -227,47 +227,47 @@ def hvac_action(self) -> str | None:
227227
return None
228228
return _CLIMATE_ACTIONS.from_esphome(self._state.action)
229229

230-
@property # type: ignore[misc]
230+
@property
231231
@esphome_state_property
232232
def fan_mode(self) -> str | None:
233233
"""Return current fan setting."""
234234
return self._state.custom_fan_mode or _FAN_MODES.from_esphome(
235235
self._state.fan_mode
236236
)
237237

238-
@property # type: ignore[misc]
238+
@property
239239
@esphome_state_property
240240
def preset_mode(self) -> str | None:
241241
"""Return current preset mode."""
242242
return self._state.custom_preset or _PRESETS.from_esphome(
243243
self._state.preset_compat(self._api_version)
244244
)
245245

246-
@property # type: ignore[misc]
246+
@property
247247
@esphome_state_property
248248
def swing_mode(self) -> str | None:
249249
"""Return current swing mode."""
250250
return _SWING_MODES.from_esphome(self._state.swing_mode)
251251

252-
@property # type: ignore[misc]
252+
@property
253253
@esphome_state_property
254254
def current_temperature(self) -> float | None:
255255
"""Return the current temperature."""
256256
return self._state.current_temperature
257257

258-
@property # type: ignore[misc]
258+
@property
259259
@esphome_state_property
260260
def target_temperature(self) -> float | None:
261261
"""Return the temperature we try to reach."""
262262
return self._state.target_temperature
263263

264-
@property # type: ignore[misc]
264+
@property
265265
@esphome_state_property
266266
def target_temperature_low(self) -> float | None:
267267
"""Return the lowbound target temperature we try to reach."""
268268
return self._state.target_temperature_low
269269

270-
@property # type: ignore[misc]
270+
@property
271271
@esphome_state_property
272272
def target_temperature_high(self) -> float | None:
273273
"""Return the highbound target temperature we try to reach."""

homeassistant/components/esphome/cover.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -65,34 +65,34 @@ def assumed_state(self) -> bool:
6565
"""Return true if we do optimistic updates."""
6666
return self._static_info.assumed_state
6767

68-
@property # type: ignore[misc]
68+
@property
6969
@esphome_state_property
7070
def is_closed(self) -> bool | None:
7171
"""Return if the cover is closed or not."""
7272
# Check closed state with api version due to a protocol change
7373
return self._state.is_closed(self._api_version)
7474

75-
@property # type: ignore[misc]
75+
@property
7676
@esphome_state_property
7777
def is_opening(self) -> bool:
7878
"""Return if the cover is opening or not."""
7979
return self._state.current_operation == CoverOperation.IS_OPENING
8080

81-
@property # type: ignore[misc]
81+
@property
8282
@esphome_state_property
8383
def is_closing(self) -> bool:
8484
"""Return if the cover is closing or not."""
8585
return self._state.current_operation == CoverOperation.IS_CLOSING
8686

87-
@property # type: ignore[misc]
87+
@property
8888
@esphome_state_property
8989
def current_cover_position(self) -> int | None:
9090
"""Return current position of cover. 0 is closed, 100 is open."""
9191
if not self._static_info.supports_position:
9292
return None
9393
return round(self._state.position * 100.0)
9494

95-
@property # type: ignore[misc]
95+
@property
9696
@esphome_state_property
9797
def current_cover_tilt_position(self) -> int | None:
9898
"""Return current position of cover tilt. 0 is closed, 100 is open."""

homeassistant/components/esphome/fan.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -112,13 +112,13 @@ async def async_set_direction(self, direction: str) -> None:
112112
key=self._static_info.key, direction=_FAN_DIRECTIONS.from_hass(direction)
113113
)
114114

115-
@property # type: ignore[misc]
115+
@property
116116
@esphome_state_property
117117
def is_on(self) -> bool | None:
118118
"""Return true if the entity is on."""
119119
return self._state.state
120120

121-
@property # type: ignore[misc]
121+
@property
122122
@esphome_state_property
123123
def percentage(self) -> int | None:
124124
"""Return the current speed percentage."""
@@ -141,15 +141,15 @@ def speed_count(self) -> int:
141141
return len(ORDERED_NAMED_FAN_SPEEDS)
142142
return self._static_info.supported_speed_levels
143143

144-
@property # type: ignore[misc]
144+
@property
145145
@esphome_state_property
146146
def oscillating(self) -> bool | None:
147147
"""Return the oscillation state."""
148148
if not self._static_info.supports_oscillation:
149149
return None
150150
return self._state.oscillating
151151

152-
@property # type: ignore[misc]
152+
@property
153153
@esphome_state_property
154154
def current_direction(self) -> str | None:
155155
"""Return the current fan direction."""

homeassistant/components/esphome/light.py

+8-8
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ def _supports_color_mode(self) -> bool:
130130
"""Return whether the client supports the new color mode system natively."""
131131
return self._api_version >= APIVersion(1, 6)
132132

133-
@property # type: ignore[misc]
133+
@property
134134
@esphome_state_property
135135
def is_on(self) -> bool | None:
136136
"""Return true if the light is on."""
@@ -260,13 +260,13 @@ async def async_turn_off(self, **kwargs: Any) -> None:
260260
data["transition_length"] = kwargs[ATTR_TRANSITION]
261261
await self._client.light_command(**data)
262262

263-
@property # type: ignore[misc]
263+
@property
264264
@esphome_state_property
265265
def brightness(self) -> int | None:
266266
"""Return the brightness of this light between 0..255."""
267267
return round(self._state.brightness * 255)
268268

269-
@property # type: ignore[misc]
269+
@property
270270
@esphome_state_property
271271
def color_mode(self) -> str | None:
272272
"""Return the color mode of the light."""
@@ -277,7 +277,7 @@ def color_mode(self) -> str | None:
277277

278278
return _color_mode_to_ha(self._state.color_mode)
279279

280-
@property # type: ignore[misc]
280+
@property
281281
@esphome_state_property
282282
def rgb_color(self) -> tuple[int, int, int] | None:
283283
"""Return the rgb color value [int, int, int]."""
@@ -294,15 +294,15 @@ def rgb_color(self) -> tuple[int, int, int] | None:
294294
round(self._state.blue * self._state.color_brightness * 255),
295295
)
296296

297-
@property # type: ignore[misc]
297+
@property
298298
@esphome_state_property
299299
def rgbw_color(self) -> tuple[int, int, int, int] | None:
300300
"""Return the rgbw color value [int, int, int, int]."""
301301
white = round(self._state.white * 255)
302302
rgb = cast("tuple[int, int, int]", self.rgb_color)
303303
return (*rgb, white)
304304

305-
@property # type: ignore[misc]
305+
@property
306306
@esphome_state_property
307307
def rgbww_color(self) -> tuple[int, int, int, int, int] | None:
308308
"""Return the rgbww color value [int, int, int, int, int]."""
@@ -330,13 +330,13 @@ def rgbww_color(self) -> tuple[int, int, int, int, int] | None:
330330
round(self._state.warm_white * 255),
331331
)
332332

333-
@property # type: ignore[misc]
333+
@property
334334
@esphome_state_property
335335
def color_temp(self) -> float | None: # type: ignore[override]
336336
"""Return the CT color value in mireds."""
337337
return self._state.color_temperature
338338

339-
@property # type: ignore[misc]
339+
@property
340340
@esphome_state_property
341341
def effect(self) -> str | None:
342342
"""Return the current effect."""

homeassistant/components/esphome/lock.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -49,25 +49,25 @@ def code_format(self) -> str | None:
4949
return self._static_info.code_format
5050
return None
5151

52-
@property # type: ignore[misc]
52+
@property
5353
@esphome_state_property
5454
def is_locked(self) -> bool | None:
5555
"""Return true if the lock is locked."""
5656
return self._state.state == LockState.LOCKED
5757

58-
@property # type: ignore[misc]
58+
@property
5959
@esphome_state_property
6060
def is_locking(self) -> bool | None:
6161
"""Return true if the lock is locking."""
6262
return self._state.state == LockState.LOCKING
6363

64-
@property # type: ignore[misc]
64+
@property
6565
@esphome_state_property
6666
def is_unlocking(self) -> bool | None:
6767
"""Return true if the lock is unlocking."""
6868
return self._state.state == LockState.UNLOCKING
6969

70-
@property # type: ignore[misc]
70+
@property
7171
@esphome_state_property
7272
def is_jammed(self) -> bool | None:
7373
"""Return true if the lock is jammed (incomplete locking)."""

homeassistant/components/esphome/media_player.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -64,19 +64,19 @@ class EsphomeMediaPlayer(
6464

6565
_attr_device_class = MediaPlayerDeviceClass.SPEAKER
6666

67-
@property # type: ignore[misc]
67+
@property
6868
@esphome_state_property
6969
def state(self) -> MediaPlayerState | None:
7070
"""Return current state."""
7171
return _STATES.from_esphome(self._state.state)
7272

73-
@property # type: ignore[misc]
73+
@property
7474
@esphome_state_property
7575
def is_volume_muted(self) -> bool:
7676
"""Return true if volume is muted."""
7777
return self._state.muted
7878

79-
@property # type: ignore[misc]
79+
@property
8080
@esphome_state_property
8181
def volume_level(self) -> float | None:
8282
"""Volume level of the media player (0..1)."""

homeassistant/components/esphome/number.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def mode(self) -> NumberMode:
7474
return NUMBER_MODES.from_esphome(self._static_info.mode)
7575
return NumberMode.AUTO
7676

77-
@property # type: ignore[misc]
77+
@property
7878
@esphome_state_property
7979
def native_value(self) -> float | None:
8080
"""Return the state of the entity."""

homeassistant/components/esphome/select.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def options(self) -> list[str]:
3636
"""Return a set of selectable options."""
3737
return self._static_info.options
3838

39-
@property # type: ignore[misc]
39+
@property
4040
@esphome_state_property
4141
def current_option(self) -> str | None:
4242
"""Return the state of the entity."""

homeassistant/components/esphome/sensor.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def force_update(self) -> bool:
7676
"""Return if this sensor should force a state update."""
7777
return self._static_info.force_update
7878

79-
@property # type: ignore[misc]
79+
@property
8080
@esphome_state_property
8181
def native_value(self) -> datetime | str | None:
8282
"""Return the state of the entity."""
@@ -121,7 +121,7 @@ def state_class(self) -> SensorStateClass | None:
121121
class EsphomeTextSensor(EsphomeEntity[TextSensorInfo, TextSensorState], SensorEntity):
122122
"""A text sensor implementation for ESPHome."""
123123

124-
@property # type: ignore[misc]
124+
@property
125125
@esphome_state_property
126126
def native_value(self) -> str | None:
127127
"""Return the state of the entity."""

homeassistant/components/esphome/switch.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def assumed_state(self) -> bool:
3636
"""Return true if we do optimistic updates."""
3737
return self._static_info.assumed_state
3838

39-
@property # type: ignore[misc]
39+
@property
4040
@esphome_state_property
4141
def is_on(self) -> bool | None:
4242
"""Return true if the switch is on."""

homeassistant/components/izone/climate.py

+8-8
Original file line numberDiff line numberDiff line change
@@ -295,29 +295,29 @@ def hvac_mode(self) -> HVACMode:
295295
return key
296296
assert False, "Should be unreachable"
297297

298-
@property # type: ignore[misc]
298+
@property
299299
@_return_on_connection_error([])
300300
def hvac_modes(self) -> list[HVACMode]:
301301
"""Return the list of available operation modes."""
302302
if self._controller.free_air:
303303
return [HVACMode.OFF, HVACMode.FAN_ONLY]
304304
return [HVACMode.OFF, *self._state_to_pizone]
305305

306-
@property # type: ignore[misc]
306+
@property
307307
@_return_on_connection_error(PRESET_NONE)
308308
def preset_mode(self):
309309
"""Eco mode is external air."""
310310
return PRESET_ECO if self._controller.free_air else PRESET_NONE
311311

312-
@property # type: ignore[misc]
312+
@property
313313
@_return_on_connection_error([PRESET_NONE])
314314
def preset_modes(self):
315315
"""Available preset modes, normal or eco."""
316316
if self._controller.free_air_enabled:
317317
return [PRESET_NONE, PRESET_ECO]
318318
return [PRESET_NONE]
319319

320-
@property # type: ignore[misc]
320+
@property
321321
@_return_on_connection_error()
322322
def current_temperature(self) -> float | None:
323323
"""Return the current temperature."""
@@ -347,7 +347,7 @@ def control_zone_setpoint(self) -> float | None:
347347
return None
348348
return zone.target_temperature
349349

350-
@property # type: ignore[misc]
350+
@property
351351
@_return_on_connection_error()
352352
def target_temperature(self) -> float | None:
353353
"""Return the temperature we try to reach (either from control zone or master unit)."""
@@ -375,13 +375,13 @@ def fan_modes(self) -> list[str] | None:
375375
"""Return the list of available fan modes."""
376376
return list(self._fan_to_pizone)
377377

378-
@property # type: ignore[misc]
378+
@property
379379
@_return_on_connection_error(0.0)
380380
def min_temp(self) -> float:
381381
"""Return the minimum temperature."""
382382
return self._controller.temp_min
383383

384-
@property # type: ignore[misc]
384+
@property
385385
@_return_on_connection_error(50.0)
386386
def max_temp(self) -> float:
387387
"""Return the maximum temperature."""
@@ -516,7 +516,7 @@ def name(self) -> str:
516516
"""Return the name of the entity."""
517517
return self._name
518518

519-
@property # type: ignore[misc]
519+
@property
520520
@_return_on_connection_error(0)
521521
def supported_features(self) -> int:
522522
"""Return the list of supported features."""

0 commit comments

Comments
 (0)