Move imports to top for doorbird (#33627)

This commit is contained in:
Franck Nijhof
2020-04-04 15:49:20 +02:00
committed by GitHub
parent b112be3556
commit f71125092f

View File

@@ -4,6 +4,7 @@ import logging
import urllib
from urllib.error import HTTPError
from aiohttp import web
from doorbirdpy import DoorBird
import voluptuous as vol
@@ -58,7 +59,6 @@ CONFIG_SCHEMA = vol.Schema(
async def async_setup(hass: HomeAssistant, config: dict):
"""Set up the DoorBird component."""
hass.data.setdefault(DOMAIN, {})
# Provide an endpoint for the doorstations to call to trigger events
@@ -341,8 +341,6 @@ class DoorBirdRequestView(HomeAssistantView):
async def get(self, request, event):
"""Respond to requests from the device."""
from aiohttp import web
hass = request.app["hass"]
token = request.query.get("token")