Skip to content
This repository has been archived by the owner on Apr 22, 2020. It is now read-only.

Commit

Permalink
Update ophaalkalender.py
Browse files Browse the repository at this point in the history
  • Loading branch information
pippyn authored Feb 18, 2019
1 parent 4215324 commit 6103874
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions ophaalkalender.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
"""
Sensor component for waste pickup dates from dutch waste collectors (using the http://www.opzet.nl app)
Original Author: Pippijn Stortelder
Current Version: 1.0.1 20190207 - Pippijn Stortelder
Current Version: 1.0.2 20190218 - Pippijn Stortelder
20190207 - Changed Groenafval to GFT
20190218 - Fixed typo
"""

import logging
Expand All @@ -17,7 +18,7 @@
from homeassistant.util import Throttle
from homeassistant.helpers.entity import Entity

__version__ = '1.0.1'
__version__ = '1.0.2'

_LOGGER = logging.getLogger(__name__)

Expand Down Expand Up @@ -50,7 +51,7 @@

PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
vol.Required(CONF_RESOURCES, default=[]): cv.ensure_list,
vol.Required(CONF_POSTCODE, default='straat'): cv.string,
vol.Required(CONF_STREET_NAME, default='straat'): cv.string,
vol.Required(CONF_POSTCODE, default='1111'): cv.string,
vol.Required(CONF_STREET_NUMBER, default='1'): cv.string,
vol.Optional(CONF_DATE_FORMAT, default='%d-%m-%Y'): cv.string,
Expand Down

0 comments on commit 6103874

Please sign in to comment.