From 4395fe92987ecb995e933ed9c87bf391e950dbdc Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Sun, 10 May 2020 17:10:44 +0200 Subject: [PATCH] Remove logo & icon from manifest (#35410) --- homeassistant/loader.py | 10 ---------- script/hassfest/manifest.py | 2 -- 2 files changed, 12 deletions(-) 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 } )