mirror of
https://github.com/home-assistant/core.git
synced 2025-04-27 10:47:51 +00:00
Update pylint to 2.17.6 (#100849)
This commit is contained in:
parent
5a3efb9149
commit
dd302b291d
@ -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()
|
||||
|
@ -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()
|
||||
|
@ -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(
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user