diff --git a/custom_components/openweathermaphistory/config_flow.py b/custom_components/openweathermaphistory/config_flow.py index 4a2da59..d9c28f1 100644 --- a/custom_components/openweathermaphistory/config_flow.py +++ b/custom_components/openweathermaphistory/config_flow.py @@ -340,6 +340,10 @@ def __init__(self, config_entry) -> None: else: self._data = self.config_entry.options + async def async_step_user(self, user_input=None): + '''initial step? work around from HA v23 11''' + return + async def async_step_init(self, user_input=None): '''initial step''' if self.config_entry.options == {}: diff --git a/custom_components/openweathermaphistory/manifest.json b/custom_components/openweathermaphistory/manifest.json index f688a57..d2c85de 100644 --- a/custom_components/openweathermaphistory/manifest.json +++ b/custom_components/openweathermaphistory/manifest.json @@ -8,5 +8,5 @@ "iot_class": "cloud_polling", "issue_tracker": "https://github.com/petergridge/openweathermaphistory/issues", "requirements": [], - "version": "2.0.9" + "version": "2.0.10" } \ No newline at end of file