Skip to content

Commit

Permalink
Small bug fix with configs
Browse files Browse the repository at this point in the history
  • Loading branch information
pippyn committed Aug 27, 2024
1 parent e1ea95d commit e519386
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion custom_components.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
8 changes: 4 additions & 4 deletions custom_components/afvalbeheer/__init__.py
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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:
Expand Down Expand Up @@ -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__)
Expand Down

0 comments on commit e519386

Please sign in to comment.