diff --git a/homeassistant/components/doorbird/__init__.py b/homeassistant/components/doorbird/__init__.py
index f762a722f2fd7100e80e5e24428897348d6eaef5..bbbaa3d340c8b296b03d1de4cdc0974f1a64b95e 100644
--- a/homeassistant/components/doorbird/__init__.py
+++ b/homeassistant/components/doorbird/__init__.py
@@ -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")