Skip to content

Commit

Permalink
Fix webdav calendar schema
Browse files Browse the repository at this point in the history
  • Loading branch information
maxlaverse committed Dec 17, 2017
1 parent 79240a0 commit 6213681
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion homeassistant/components/calendar/caldav.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@
CONF_SEARCH = 'search'

PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
vol.Required(CONF_URL): vol.Url,
# pylint: disable=no-value-for-parameter
vol.Required(CONF_URL): vol.Url(),
vol.Optional(CONF_CALENDARS, default=[]):
vol.All(cv.ensure_list, vol.Schema([
cv.string
Expand Down

0 comments on commit 6213681

Please sign in to comment.