From 1761b25879a179d3a297c5153c6dd4a64dc8644b Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Thu, 18 Apr 2019 20:31:53 -0700 Subject: [PATCH] Remove copy paste error --- script/hassfest/services.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/script/hassfest/services.py b/script/hassfest/services.py index bb04d2fc13f..4be366b3d55 100644 --- a/script/hassfest/services.py +++ b/script/hassfest/services.py @@ -91,11 +91,3 @@ def validate(integrations: Dict[str, Integration], config): continue validate_services(integration) - - # check that all referenced dependencies exist - for dep in integration.manifest['dependencies']: - if dep not in integrations: - integration.add_error( - 'dependencies', - "Dependency {} does not exist" - )