From e519386d1aebf4d878b0623d34f11ecc9c290c61 Mon Sep 17 00:00:00 2001 From: Pippijn Stortelder Date: Tue, 27 Aug 2024 16:16:59 +0200 Subject: [PATCH] Small bug fix with configs --- custom_components.json | 2 +- custom_components/afvalbeheer/__init__.py | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/custom_components.json b/custom_components.json index d176990..b4f9ab5 100644 --- a/custom_components.json +++ b/custom_components.json @@ -1,6 +1,6 @@ { "sensor.afvalbeheer": { - "version": "5.3.8", + "version": "5.3.9", "local_location": "/custom_components/afvalbeheer/__init__.py", "remote_location": "https://raw.githubusercontent.com/pippyn/Home-Assistant-Sensor-Afvalbeheer/master/custom_components/afvalbeheer/__init__.py", "visit_repo": "https://github.com/pippyn/Home-Assistant-Sensor-Afvalbeheer", diff --git a/custom_components/afvalbeheer/__init__.py b/custom_components/afvalbeheer/__init__.py index 1656c9b..d31bb0c 100644 --- a/custom_components/afvalbeheer/__init__.py +++ b/custom_components/afvalbeheer/__init__.py @@ -1,7 +1,7 @@ """ Sensor component for waste pickup dates from dutch and belgium waste collectors Original Author: Pippijn Stortelder -Current Version: 5.3.8 20240827 +Current Version: 5.3.9 20240827 20230705 - Added support for Afval3xBeter 20230822 - Fix icon for papier-pmd 20230927 - Fix ZRD API @@ -27,7 +27,7 @@ 20240711 - Add mapping for PMD-Rest in Ximmio 20240711 - Fix sensor icons 20240827 - Add support for Cleanprofs -20240827 - Small bug fixes +20240827 - Small bug fix with configs Example config: Configuration.yaml: @@ -60,11 +60,11 @@ from homeassistant.helpers.typing import ConfigType from homeassistant.helpers.discovery import async_load_platform, load_platform -from .const import DOMAIN, CONF_ID +from .const import DOMAIN, PLATFORM_SCHEMA, CONF_ID from .API import get_wastedata_from_config -__version__ = "5.3.8" +__version__ = "5.3.9" _LOGGER = logging.getLogger(__name__)