PyLint 1.5 fixes

This commit is contained in:
Paulus Schoutsen 2015-11-29 13:49:05 -08:00
parent 01203c7c4c
commit a301d869d7
32 changed files with 96 additions and 94 deletions

View file

@ -6,13 +6,14 @@ Support for IP Cameras.
For more details about this platform, please refer to the documentation at
https://home-assistant.io/components/camera.mjpeg/
"""
import logging
from requests.auth import HTTPBasicAuth
from homeassistant.helpers import validate_config
from homeassistant.components.camera import DOMAIN
from homeassistant.components.camera import Camera
import requests
from contextlib import closing
import logging
import requests
from requests.auth import HTTPBasicAuth
from homeassistant.helpers import validate_config
from homeassistant.components.camera import DOMAIN, Camera
_LOGGER = logging.getLogger(__name__)