Upgrade pylast to 1.9.0 (#8854)

This commit is contained in:
Fabian Affolter 2017-08-06 10:08:45 +02:00 committed by GitHub
parent 8e4c799ad1
commit c11b6798dc
2 changed files with 4 additions and 7 deletions

View file

@ -13,7 +13,7 @@ from homeassistant.helpers.entity import Entity
from homeassistant.const import CONF_API_KEY
import homeassistant.helpers.config_validation as cv
REQUIREMENTS = ['pylast==1.8.0']
REQUIREMENTS = ['pylast==1.9.0']
ATTR_LAST_PLAYED = 'last_played'
ATTR_PLAY_COUNT = 'play_count'
@ -25,8 +25,7 @@ ICON = 'mdi:lastfm'
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
vol.Required(CONF_API_KEY): cv.string,
vol.Required(CONF_USERS, default=[]):
vol.All(cv.ensure_list, [cv.string]),
vol.Required(CONF_USERS, default=[]): vol.All(cv.ensure_list, [cv.string]),
})
@ -38,8 +37,7 @@ def setup_platform(hass, config, add_devices, discovery_info=None):
add_devices(
[LastfmSensor(
username, network) for username in config.get(CONF_USERS)]
)
username, network) for username in config.get(CONF_USERS)], True)
class LastfmSensor(Entity):
@ -55,7 +53,6 @@ class LastfmSensor(Entity):
self._lastplayed = None
self._topplayed = None
self._cover = None
self.update()
@property
def name(self):

View file

@ -612,7 +612,7 @@ pykira==0.1.1
pykwb==0.0.8
# homeassistant.components.sensor.lastfm
pylast==1.8.0
pylast==1.9.0
# homeassistant.components.media_player.webostv
# homeassistant.components.notify.webostv