drop the try

This commit is contained in:
Jon Maddox 2015-09-12 00:50:40 -04:00
parent f41786d893
commit 395dbe8804

View File

@ -34,10 +34,7 @@ from homeassistant.components.media_player import (
from homeassistant.const import ( from homeassistant.const import (
STATE_IDLE, STATE_PLAYING, STATE_PAUSED) STATE_IDLE, STATE_PLAYING, STATE_PAUSED)
try: import requests
import requests
except ImportError:
requests = None
_LOGGER = logging.getLogger(__name__) _LOGGER = logging.getLogger(__name__)