Fix openexchangerates form data description (#103974)

This commit is contained in:
Martin Hjelmare 2023-11-14 17:07:27 +01:00 committed by GitHub
parent b35afab5ef
commit 7f08f139d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -66,7 +66,11 @@ class ConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
self._reauth_entry.data if self._reauth_entry else {} self._reauth_entry.data if self._reauth_entry else {}
) )
return self.async_show_form( return self.async_show_form(
step_id="user", data_schema=get_data_schema(currencies, existing_data) step_id="user",
data_schema=get_data_schema(currencies, existing_data),
description_placeholders={
"signup": "https://openexchangerates.org/signup"
},
) )
errors = {} errors = {}