Skip to content

Commit cb1b917

Browse files
authored
Update mypy-dev to 1.13.0a1 (#128548)
1 parent 006d511 commit cb1b917

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

homeassistant/components/light/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool: # noqa:
408408
def preprocess_data(data: dict[str, Any]) -> VolDictType:
409409
"""Preprocess the service data."""
410410
base: VolDictType = {
411-
entity_field: data.pop(entity_field)
411+
entity_field: data.pop(entity_field) # type: ignore[arg-type]
412412
for entity_field in cv.ENTITY_SERVICE_FIELDS
413413
if entity_field in data
414414
}

homeassistant/components/overkiz/climate/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ async def async_setup_entry(
9696
# ie Atlantic APC
9797
entities_based_on_widget_and_controllable: list[Entity] = [
9898
WIDGET_AND_CONTROLLABLE_TO_CLIMATE_ENTITY[device.widget][
99-
device.controllable_name
99+
device.controllable_name # type: ignore[index]
100100
](device.device_url, data.coordinator)
101101
for device in data.platforms[Platform.CLIMATE]
102102
if device.widget in WIDGET_AND_CONTROLLABLE_TO_CLIMATE_ENTITY

requirements_test.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ astroid==3.3.4
1111
coverage==7.6.1
1212
freezegun==1.5.1
1313
mock-open==1.4.0
14-
mypy-dev==1.12.0a5
14+
mypy-dev==1.13.0a1
1515
pre-commit==4.0.0
1616
pydantic==1.10.18
1717
pylint==3.3.1

0 commit comments

Comments
 (0)