diff --git a/homeassistant/components/flo/switch.py b/homeassistant/components/flo/switch.py index 5be0ffb745d..00e5e57498f 100644 --- a/homeassistant/components/flo/switch.py +++ b/homeassistant/components/flo/switch.py @@ -100,7 +100,6 @@ class FloSwitch(FloEntity, SwitchEntity): self._attr_is_on = self._device.last_known_valve_state == "open" self.async_write_ha_state() - # pylint: disable-next=hass-missing-super-call async def async_added_to_hass(self) -> None: """When entity is added to hass.""" await super().async_added_to_hass() diff --git a/homeassistant/components/livisi/entity.py b/homeassistant/components/livisi/entity.py index b7b9bdc8521..f76901ddb05 100644 --- a/homeassistant/components/livisi/entity.py +++ b/homeassistant/components/livisi/entity.py @@ -64,7 +64,6 @@ class LivisiEntity(CoordinatorEntity[LivisiDataUpdateCoordinator]): ) super().__init__(coordinator) - # pylint: disable-next=hass-missing-super-call async def async_added_to_hass(self) -> None: """Register callback for reachability.""" await super().async_added_to_hass() diff --git a/homeassistant/components/zha/__init__.py b/homeassistant/components/zha/__init__.py index bd181d82a33..08db98cff6f 100644 --- a/homeassistant/components/zha/__init__.py +++ b/homeassistant/components/zha/__init__.py @@ -170,7 +170,7 @@ async def async_setup_entry(hass: HomeAssistant, config_entry: ConfigEntry) -> b try: await zha_gateway.async_initialize() - except Exception: # pylint: disable=broad-except + except Exception: if RadioType[config_entry.data[CONF_RADIO_TYPE]] == RadioType.ezsp: try: await repairs.warn_on_wrong_silabs_firmware( diff --git a/requirements_test.txt b/requirements_test.txt index 2d0c256ac26..e9942a290bd 100644 --- a/requirements_test.txt +++ b/requirements_test.txt @@ -7,14 +7,14 @@ -c homeassistant/package_constraints.txt -r requirements_test_pre_commit.txt -astroid==2.15.4 +astroid==2.15.7 coverage==7.3.1 freezegun==1.2.2 mock-open==1.4.0 mypy==1.5.1 pre-commit==3.4.0 pydantic==1.10.12 -pylint==2.17.4 +pylint==2.17.6 pylint-per-file-ignores==1.2.1 pipdeptree==2.11.0 pytest-asyncio==0.21.0