From 90075b525b95f85c9d541e54adceda6d6ecee77c Mon Sep 17 00:00:00 2001 From: Zane V Date: Sun, 17 May 2026 21:32:16 -0400 Subject: [PATCH] Fix hassfest issues --- custom_components/jibo/__init__.py | 3 +++ custom_components/jibo/manifest.json | 12 ++++++------ 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/custom_components/jibo/__init__.py b/custom_components/jibo/__init__.py index 7e9dfda..c8c4410 100644 --- a/custom_components/jibo/__init__.py +++ b/custom_components/jibo/__init__.py @@ -1,10 +1,13 @@ import aiohttp import voluptuous as vol from homeassistant.core import HomeAssistant, ServiceCall +from homeassistant.helpers import config_validation as cv import logging from .const import DOMAIN, PLATFORMS +CONFIG_SCHEMA = cv.config_entry_only_config_schema(DOMAIN) + _LOGGER = logging.getLogger(__name__) _SAY_SCHEMA = vol.Schema({ diff --git a/custom_components/jibo/manifest.json b/custom_components/jibo/manifest.json index 138761d..500136e 100644 --- a/custom_components/jibo/manifest.json +++ b/custom_components/jibo/manifest.json @@ -1,13 +1,13 @@ { "domain": "jibo", "name": "OpenJibo", - "version": "0.1.0.4", - "documentation": "https://jibohacks.zane.org/homeassistant/int", - "issue_tracker": "https://github.com/ZaneThePython/openjibo-hacs/issues", - "requirements": [], - "dependencies": [], "codeowners": ["@ZaneThePython"], "config_flow": true, + "dependencies": [], + "documentation": "https://jibohacks.zane.org/homeassistant/int", + "integration_type": "device", "iot_class": "local_polling", - "integration_type": "device" + "issue_tracker": "https://github.com/ZaneThePython/openjibo-hacs/issues", + "requirements": [], + "version": "0.1.0.4" }