Fix imports (using isort)

This commit is contained in:
Paulus Schoutsen 2016-02-18 21:27:50 -08:00
parent 233a2a2878
commit e80309c03c
214 changed files with 644 additions and 718 deletions

View file

@ -10,12 +10,9 @@ https://home-assistant.io/components/media_player.snapcast/
import logging
import socket
from homeassistant.const import (
STATE_ON, STATE_OFF)
from homeassistant.components.media_player import (
MediaPlayerDevice,
SUPPORT_VOLUME_SET, SUPPORT_VOLUME_MUTE)
SUPPORT_VOLUME_MUTE, SUPPORT_VOLUME_SET, MediaPlayerDevice)
from homeassistant.const import STATE_OFF, STATE_ON
SUPPORT_SNAPCAST = SUPPORT_VOLUME_SET | SUPPORT_VOLUME_MUTE
DOMAIN = 'snapcast'