Upgrade pylast to 1.9.0 (#8854)
This commit is contained in:
parent
8e4c799ad1
commit
c11b6798dc
2 changed files with 4 additions and 7 deletions
|
@ -13,7 +13,7 @@ from homeassistant.helpers.entity import Entity
|
||||||
from homeassistant.const import CONF_API_KEY
|
from homeassistant.const import CONF_API_KEY
|
||||||
import homeassistant.helpers.config_validation as cv
|
import homeassistant.helpers.config_validation as cv
|
||||||
|
|
||||||
REQUIREMENTS = ['pylast==1.8.0']
|
REQUIREMENTS = ['pylast==1.9.0']
|
||||||
|
|
||||||
ATTR_LAST_PLAYED = 'last_played'
|
ATTR_LAST_PLAYED = 'last_played'
|
||||||
ATTR_PLAY_COUNT = 'play_count'
|
ATTR_PLAY_COUNT = 'play_count'
|
||||||
|
@ -25,8 +25,7 @@ ICON = 'mdi:lastfm'
|
||||||
|
|
||||||
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
|
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
|
||||||
vol.Required(CONF_API_KEY): cv.string,
|
vol.Required(CONF_API_KEY): cv.string,
|
||||||
vol.Required(CONF_USERS, default=[]):
|
vol.Required(CONF_USERS, default=[]): vol.All(cv.ensure_list, [cv.string]),
|
||||||
vol.All(cv.ensure_list, [cv.string]),
|
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,8 +37,7 @@ def setup_platform(hass, config, add_devices, discovery_info=None):
|
||||||
|
|
||||||
add_devices(
|
add_devices(
|
||||||
[LastfmSensor(
|
[LastfmSensor(
|
||||||
username, network) for username in config.get(CONF_USERS)]
|
username, network) for username in config.get(CONF_USERS)], True)
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
class LastfmSensor(Entity):
|
class LastfmSensor(Entity):
|
||||||
|
@ -55,7 +53,6 @@ class LastfmSensor(Entity):
|
||||||
self._lastplayed = None
|
self._lastplayed = None
|
||||||
self._topplayed = None
|
self._topplayed = None
|
||||||
self._cover = None
|
self._cover = None
|
||||||
self.update()
|
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def name(self):
|
def name(self):
|
||||||
|
|
|
@ -612,7 +612,7 @@ pykira==0.1.1
|
||||||
pykwb==0.0.8
|
pykwb==0.0.8
|
||||||
|
|
||||||
# homeassistant.components.sensor.lastfm
|
# homeassistant.components.sensor.lastfm
|
||||||
pylast==1.8.0
|
pylast==1.9.0
|
||||||
|
|
||||||
# homeassistant.components.media_player.webostv
|
# homeassistant.components.media_player.webostv
|
||||||
# homeassistant.components.notify.webostv
|
# homeassistant.components.notify.webostv
|
||||||
|
|
Loading…
Add table
Reference in a new issue