Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
Bram van Dartel committed Feb 15, 2022
1 parent 10752d2 commit 720e365
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion custom_components/afvalwijzer/const/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

API = "api"
NAME = "afvalwijzer"
VERSION = "2022.12.02"
VERSION = "2022.02.01"
ISSUE_URL = "https://github.com/xirixiz/homeassistant-afvalwijzer/issues"

_LOGGER = logging.getLogger(__name__)
Expand Down
2 changes: 1 addition & 1 deletion custom_components/afvalwijzer/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"domain": "afvalwijzer",
"name": "Afvalwijzer",
"version": "2022.01.02",
"version": "2022.02.01",
"iot_class": "cloud_polling",
"documentation": "https://github.com/xirixiz/homeassistant-afvalwijzer/blob/master/README.md",
"issue_tracker": "https://github.com/xirixiz/homeassistant-afvalwijzer/issues",
Expand Down
2 changes: 1 addition & 1 deletion custom_components/afvalwijzer/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
vol.Required(CONF_POSTAL_CODE.strip(), default="1234AB"): cv.string,
vol.Required(CONF_STREET_NUMBER.strip(), default="5"): cv.string,
vol.Optional(CONF_SUFFIX.strip(), default=""): cv.string,
vol.Optional(CONF_EXCLUDE_PICKUP_TODAY.strip(), default="false"): cv.string,
vol.Optional(CONF_EXCLUDE_PICKUP_TODAY.strip(), default="true"): cv.string,
vol.Optional(CONF_EXCLUDE_LIST.strip().lower(), default=""): cv.string,
vol.Optional(CONF_DEFAULT_LABEL.strip(), default="Geen"): cv.string,
vol.Optional(CONF_ID.strip().lower(), default=""): cv.string,
Expand Down

0 comments on commit 720e365

Please sign in to comment.