Update pylint to 3.3.6 (#141028)

This commit is contained in:
Marc Mueller 2025-03-21 00:33:16 +01:00 committed by GitHub
parent a45c8d2820
commit b936739917
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 4 additions and 6 deletions

View File

@ -1022,8 +1022,6 @@ class MQTT:
Resubscribe to all topics we were subscribed to and publish birth
message.
"""
# pylint: disable-next=import-outside-toplevel
if reason_code.is_failure:
# 24: Continue authentication
# 25: Re-authenticate

View File

@ -248,7 +248,7 @@ class _TemplateAttribute:
return
class TemplateEntity(AbstractTemplateEntity): # pylint: disable=hass-enforce-class-module
class TemplateEntity(AbstractTemplateEntity):
"""Entity that uses templates to calculate attributes."""
_attr_available = True

View File

@ -163,7 +163,7 @@ class TTSCache:
self._partial_data.append(chunk)
for queue in self._consumers:
queue.put_nowait(chunk)
except Exception as err: # pylint: disable=broad-except
except Exception as err:
self._loading_error = err
raise
finally:

View File

@ -7,7 +7,7 @@
-c homeassistant/package_constraints.txt
-r requirements_test_pre_commit.txt
astroid==3.3.8
astroid==3.3.9
coverage==7.6.12
freezegun==1.5.1
license-expression==30.4.1
@ -15,7 +15,7 @@ mock-open==1.4.0
mypy-dev==1.16.0a5
pre-commit==4.0.0
pydantic==2.10.6
pylint==3.3.4
pylint==3.3.6
pylint-per-file-ignores==1.4.0
pipdeptree==2.25.1
pytest-asyncio==0.25.3