1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 21:06:19 +00:00

Update pylint to 3.2.4 (#120606)

This commit is contained in:
Marc Mueller
2024-06-26 22:29:55 +02:00
committed by GitHub
parent 516b9126b7
commit fcfb580f0c
5 changed files with 3 additions and 6 deletions

View File

@@ -379,7 +379,7 @@ def async_mock_service(
calls = []
@callback
def mock_service_log(call): # pylint: disable=unnecessary-lambda
def mock_service_log(call):
"""Mock service call."""
calls.append(call)
if raise_exception is not None: