Fix missing f-string in async_listen (#89336)

This commit is contained in:
J. Nick Koston 2023-03-07 15:19:08 -10:00 committed by GitHub
parent aa2267d68e
commit 099f16f6b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1042,7 +1042,7 @@ class EventBus:
return self._async_listen_filterable_job(
event_type,
_FilterableJob(
HassJob(listener, "listen {event_type}"), event_filter, run_immediately
HassJob(listener, f"listen {event_type}"), event_filter, run_immediately
),
)