mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 09:17:46 +01:00
web_server_base AUTO_LOAD includes ASYNC_TCP (#788)
* web_server_base AUTO_LOAD includes ASYNC_TCP fix AUTO_LOAD of web_server_base to include ASYNC_TCP * Remove from dependencies Co-authored-by: Otto Winter <otto@otto-winter.com>
This commit is contained in:
parent
1177b856a0
commit
9fb60b8015
1 changed files with 2 additions and 1 deletions
|
@ -3,7 +3,8 @@ import esphome.codegen as cg
|
|||
from esphome.const import CONF_ID
|
||||
from esphome.core import coroutine_with_priority, CORE
|
||||
|
||||
DEPENDENCIES = ['network', 'async_tcp']
|
||||
DEPENDENCIES = ['network']
|
||||
AUTO_LOAD = ['async_tcp']
|
||||
|
||||
web_server_base_ns = cg.esphome_ns.namespace('web_server_base')
|
||||
WebServerBase = web_server_base_ns.class_('WebServerBase', cg.Component)
|
||||
|
|
Loading…
Reference in a new issue