Move imports to top for doorbird (#33627)
This commit is contained in:
parent
b112be3556
commit
f71125092f
1 changed files with 1 additions and 3 deletions
|
@ -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")
|
||||
|
|
Loading…
Add table
Reference in a new issue