We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8259dc commit be4945fCopy full SHA for be4945f
custom_components/readme/__init__.py
@@ -11,7 +11,7 @@
11
import json
12
import os
13
from shutil import copyfile
14
-from typing import Any, Dict, List
+from typing import Any
15
16
import homeassistant.helpers.config_validation as cv
17
import voluptuous as vol
@@ -198,7 +198,7 @@ def get_hacs_components(hass: HomeAssistant):
198
199
@callback
200
def get_ha_installed_addons(hass: HomeAssistant) -> list[dict[str, Any]]:
201
- if is_hassio(hass):
+ if not is_hassio(hass):
202
return []
203
supervisor_info = get_supervisor_info(hass)
204
0 commit comments