Skip to content

Commit

Permalink
fix error config_flow
Browse files Browse the repository at this point in the history
  • Loading branch information
Bram van Dartel committed Dec 30, 2024
1 parent 4403e89 commit fb8372e
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 20 deletions.
34 changes: 17 additions & 17 deletions custom_components/afvalwijzer/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,23 +29,23 @@
SENSOR_COLLECTORS_XIMMIO_IDS,
)

try:
from . import (
afvalalert,
burgerportaal,
circulus,
deafvalapp,
icalendar,
klikogroep,
mijnafvalwijzer,
opzet,
rd4,
rova,
rwm,
ximmio,
)
except ImportError as err:
_LOGGER.error("Failed to import provider modules: %s", err)
# try:
# from . import (
# afvalalert,
# burgerportaal,
# circulus,
# deafvalapp,
# icalendar,
# klikogroep,
# mijnafvalwijzer,
# opzet,
# rd4,
# rova,
# rwm,
# ximmio,
# )
# except ImportError as err:
# _LOGGER.error("Failed to import provider modules: %s", err)

# Extract all collectors into a single list
all_collectors = sorted(
Expand Down
2 changes: 1 addition & 1 deletion custom_components/afvalwijzer/const/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

API = "api"
NAME = "afvalwijzer"
VERSION = "2024.12.07"
VERSION = "2024.12.08"

ISSUE_URL = "https://github.com/xirixiz/homeassistant-afvalwijzer/issues"

Expand Down
2 changes: 1 addition & 1 deletion custom_components/afvalwijzer/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
"iot_class": "cloud_polling",
"issue_tracker": "https://github.com/xirixiz/homeassistant-afvalwijzer/issues",
"requirements": [],
"version": "2024.12.07"
"version": "2024.12.08"
}
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpver]
current_version = 2024.12.07
current_version = 2024.12.08
version_pattern = MAJOR.MINOR.PATCH[PYTAGNUM]

[bumpver:file_patterns]
Expand Down

0 comments on commit fb8372e

Please sign in to comment.