Update pylint to 3.3.2 and astroid to 3.3.6 (#132718)

* Update pylint to 3.3.2 and astroid to 3.3.6

* Fix
This commit is contained in:
Marc Mueller 2024-12-09 16:05:40 +01:00 committed by GitHub
parent 3be0d0d085
commit 49800f9aaa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 2 additions and 5 deletions

View File

@ -545,7 +545,6 @@ class MusicAssistantPlayer(MusicAssistantEntity, MediaPlayerEntity):
self, player: Player, queue: PlayerQueue | None
) -> None:
"""Update media attributes for the active queue item."""
# pylint: disable=too-many-statements
self._attr_media_artist = None
self._attr_media_album_artist = None
self._attr_media_album_name = None

View File

@ -7,7 +7,7 @@
-c homeassistant/package_constraints.txt
-r requirements_test_pre_commit.txt
astroid==3.3.5
astroid==3.3.6
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.14.0a6
pre-commit==4.0.0
pydantic==1.10.19
pylint==3.3.1
pylint==3.3.2
pylint-per-file-ignores==1.3.2
pipdeptree==2.23.4
pytest-asyncio==0.24.0

View File

@ -14,8 +14,6 @@ from samsungtvws.exceptions import (
UnauthorizedError,
)
from websockets import frames
# pylint: disable-next=no-name-in-module
from websockets.exceptions import ConnectionClosedError, WebSocketException
from homeassistant import config_entries