From 7cb1818df9828904ce9c60bf37c6454a7481abcb Mon Sep 17 00:00:00 2001 From: Daniel <49846893+danielbrunt57@users.noreply.github.com> Date: Wed, 7 Aug 2024 21:53:29 -0700 Subject: [PATCH] fix: fix hass_url undefined (#2417) --- custom_components/alexa_media/config_flow.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/custom_components/alexa_media/config_flow.py b/custom_components/alexa_media/config_flow.py index ef39a609..4ae546d3 100644 --- a/custom_components/alexa_media/config_flow.py +++ b/custom_components/alexa_media/config_flow.py @@ -811,9 +811,6 @@ def _update_schema_defaults(self) -> Any: vol.Required( CONF_OTPSECRET, default=self.config.get(CONF_OTPSECRET, "") ): str, - vol.Required( - CONF_HASS_URL, default=self.config.get(CONF_HASS_URL, hass_url) - ): str, vol.Optional( CONF_PUBLIC_URL, default=self.config.get(CONF_PUBLIC_URL, DEFAULT_PUBLIC_URL),