More PyLint fixes

This commit is contained in:
Paulus Schoutsen 2015-11-29 14:04:44 -08:00
parent 5023772b3e
commit 7ba9fb90f1
3 changed files with 8 additions and 15 deletions

View file

@ -8,6 +8,8 @@ https://home-assistant.io/components/media_player.itunes/
"""
import logging
import requests
from homeassistant.components.media_player import (
MediaPlayerDevice, MEDIA_TYPE_MUSIC, MEDIA_TYPE_PLAYLIST, SUPPORT_PAUSE,
SUPPORT_SEEK, SUPPORT_VOLUME_SET, SUPPORT_VOLUME_MUTE,
@ -17,8 +19,6 @@ from homeassistant.components.media_player import (
from homeassistant.const import (
STATE_IDLE, STATE_PLAYING, STATE_PAUSED, STATE_OFF, STATE_ON)
import requests
_LOGGER = logging.getLogger(__name__)
SUPPORT_ITUNES = SUPPORT_PAUSE | SUPPORT_VOLUME_SET | SUPPORT_VOLUME_MUTE | \