Update pylint to 3.3.3 and astroid to 3.3.8 (#136090)

This commit is contained in:
Marc Mueller 2025-01-20 17:52:18 +01:00 committed by GitHub
parent 05c7cb5f32
commit af02dbf0cb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 3 additions and 5 deletions

View File

@ -8,7 +8,6 @@ import logging
import math
from typing import Any, Final
# Suppressing disable=deprecated-module is needed for Python 3.11
import audioop # pylint: disable=deprecated-module
import voluptuous as vol

View File

@ -453,7 +453,7 @@ class DataUpdateCoordinator(BaseDataUpdateCoordinatorProtocol, Generic[_DataT]):
self.logger.debug(
"Finished fetching %s data in %.3f seconds (success: %s)",
self.name,
monotonic() - start, # pylint: disable=possibly-used-before-assignment
monotonic() - start,
self.last_update_success,
)
if not auth_failed and self._listeners and not self.hass.is_stopping:

View File

@ -7,7 +7,7 @@
-c homeassistant/package_constraints.txt
-r requirements_test_pre_commit.txt
astroid==3.3.6
astroid==3.3.8
coverage==7.6.8
freezegun==1.5.1
license-expression==30.4.0
@ -15,7 +15,7 @@ mock-open==1.4.0
mypy-dev==1.15.0a2
pre-commit==4.0.0
pydantic==2.10.4
pylint==3.3.2
pylint==3.3.3
pylint-per-file-ignores==1.3.2
pipdeptree==2.23.4
pytest-asyncio==0.24.0

View File

@ -8,7 +8,6 @@ from dbus_fast.aio import message_bus
import habluetooth.util as habluetooth_utils
import pytest
# pylint: disable-next=no-name-in-module
from homeassistant.components import bluetooth
from homeassistant.core import HomeAssistant