diff --git a/homeassistant/loader.py b/homeassistant/loader.py index f2830692aad..ed5545b3c28 100644 --- a/homeassistant/loader.py +++ b/homeassistant/loader.py @@ -252,16 +252,6 @@ class Integration: """Return Integration Quality Scale.""" return cast(str, self.manifest.get("quality_scale")) - @property - def logo(self) -> Optional[str]: - """Return Integration Logo.""" - return cast(str, self.manifest.get("logo")) - - @property - def icon(self) -> Optional[str]: - """Return Integration Icon.""" - return cast(str, self.manifest.get("icon")) - @property def is_built_in(self) -> bool: """Test if package is a built-in integration.""" diff --git a/script/hassfest/manifest.py b/script/hassfest/manifest.py index 9e326cb7965..cb592b63b53 100644 --- a/script/hassfest/manifest.py +++ b/script/hassfest/manifest.py @@ -54,8 +54,6 @@ MANIFEST_SCHEMA = vol.Schema( vol.Optional("dependencies"): [str], vol.Optional("after_dependencies"): [str], vol.Required("codeowners"): [str], - vol.Optional("logo"): vol.Url(), # pylint: disable=no-value-for-parameter - vol.Optional("icon"): vol.Url(), # pylint: disable=no-value-for-parameter } )