Remove unnecessary assignment of Template.hass from minio (#123679)

This commit is contained in:
Erik Montnemery 2024-08-12 15:54:35 +02:00 committed by GitHub
parent c47fdf7074
commit 2d41723cfe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -127,7 +127,6 @@ def setup(hass: HomeAssistant, config: ConfigType) -> bool:
def _render_service_value(service, key):
value = service.data[key]
value.hass = hass
return value.async_render(parse_result=False)
def put_file(service: ServiceCall) -> None: