Updated HACS and also added in Wyze Thermometer

This commit is contained in:
ccostan
2020-05-16 10:34:10 -04:00
parent a7679ff15e
commit 776db75270
13 changed files with 48 additions and 42 deletions

View File

@@ -6,6 +6,7 @@ from homeassistant.loader import async_get_custom_components
from custom_components.hacs.hacsbase.exceptions import HacsException
from custom_components.hacs.helpers.filters import get_first_directory_in_directory
from custom_components.hacs.helpers.information import get_integration_manifest
from custom_components.hacs.helpers.action import run_action_checks
from custom_components.hacs.repositories.repository import HacsRepository
@@ -49,6 +50,9 @@ class HacsIntegration(HacsRepository):
raise HacsException(exception)
self.logger.error(exception)
if self.hacs.action:
await run_action_checks(self)
# Handle potential errors
if self.validate.errors:
for error in self.validate.errors: