From d7fe53300b2ba8f441dc53739b9ffe38dd5d08fa Mon Sep 17 00:00:00 2001 From: Tomasz Date: Sun, 13 Nov 2022 00:22:18 +0100 Subject: [PATCH] Tech component fails due to missing requirements Tech custom-component fails to initialize due to missing requirements (as defined in manifest.json#requirements): it requires itself. --- custom_components/tech/manifest.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/custom_components/tech/manifest.json b/custom_components/tech/manifest.json index 5c1fc7c..3378d3e 100644 --- a/custom_components/tech/manifest.json +++ b/custom_components/tech/manifest.json @@ -3,10 +3,10 @@ "name": "Tech Controllers", "config_flow": true, "documentation": "https://www.home-assistant.io/integrations/tech", - "requirements": ["tech"], + "requirements": [], "dependencies": [], "codeowners": [ "@mariusz.ostoja-swierczynski" ], "version": "1.0.0" -} \ No newline at end of file +}