Skip to content

Commit

Permalink
Fix pushover schema (#21073)
Browse files Browse the repository at this point in the history
  • Loading branch information
balloob committed Feb 14, 2019
2 parents ab7fda4 + d60934c commit 12c18d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions homeassistant/components/notify/pushover.py
Expand Up @@ -10,7 +10,7 @@

from homeassistant.components.notify import (
ATTR_TITLE, ATTR_TITLE_DEFAULT, ATTR_TARGET, ATTR_DATA,
BaseNotificationService)
BaseNotificationService, PLATFORM_SCHEMA)
from homeassistant.const import CONF_API_KEY
import homeassistant.helpers.config_validation as cv

Expand All @@ -20,7 +20,7 @@

CONF_USER_KEY = 'user_key'

PLATFORM_SCHEMA = cv.PLATFORM_SCHEMA.extend({
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
vol.Required(CONF_USER_KEY): cv.string,
vol.Required(CONF_API_KEY): cv.string,
})
Expand Down

0 comments on commit 12c18d6

Please sign in to comment.