Update typing - collections.abc (2) (#63934)

This commit is contained in:
Marc Mueller 2022-01-12 09:04:37 +01:00 committed by GitHub
parent eafece3651
commit 67c35652f0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 23 additions and 16 deletions

View file

@ -2,16 +2,17 @@
from __future__ import annotations
import asyncio
from collections.abc import Awaitable, Callable
from concurrent import futures
from functools import partial
import json
from typing import TYPE_CHECKING, Any, Awaitable, Callable, Final
from typing import TYPE_CHECKING, Any, Final
from homeassistant.core import HomeAssistant
from homeassistant.helpers.json import JSONEncoder
if TYPE_CHECKING:
from .connection import ActiveConnection
from .connection import ActiveConnection # noqa: F401
WebSocketCommandHandler = Callable[