From e799b082157615efffbd63fd14479107712e77a3 Mon Sep 17 00:00:00 2001 From: Aaron Bach Date: Mon, 3 Feb 2020 12:23:06 -0700 Subject: [PATCH] Fix issue with IQVIA dispatcher topic (#31440) * Fix issues with IQVIA dispatcher topic * Use f-string --- homeassistant/components/iqvia/const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/iqvia/const.py b/homeassistant/components/iqvia/const.py index 09548ee929a..52e657bc2c0 100644 --- a/homeassistant/components/iqvia/const.py +++ b/homeassistant/components/iqvia/const.py @@ -6,7 +6,7 @@ CONF_ZIP_CODE = "zip_code" DATA_CLIENT = "client" DATA_LISTENER = "listener" -TOPIC_DATA_UPDATE = "data_update" +TOPIC_DATA_UPDATE = f"{DOMAIN}_data_update" TYPE_ALLERGY_FORECAST = "allergy_average_forecasted" TYPE_ALLERGY_INDEX = "allergy_index"