1
0
mirror of https://github.com/esphome/esphome.git synced 2025-02-12 16:08:19 +00:00
This commit is contained in:
J. Nick Koston 2023-11-11 18:33:28 -06:00
parent 250d82e0c8
commit b047038adb
No known key found for this signature in database

View File

@ -307,7 +307,7 @@ class EsphomeCommandWebSocket(tornado.websocket.WebSocketHandler):
await handlers[type_](self, json_message)
@websocket_method("spawn")
async def handle_spawn(self, json_message):
async def handle_spawn(self, json_message: dict[str, Any]) -> None:
if self._proc is not None:
# spawn can only be called once
return