Import Callable from collections.abc (1) (#56775)

This commit is contained in:
Marc Mueller 2021-09-29 16:32:11 +02:00 committed by GitHub
parent d51487f82a
commit 77ee72cbb9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
36 changed files with 73 additions and 58 deletions

View file

@ -2,10 +2,11 @@
from __future__ import annotations
import asyncio
from collections.abc import Callable
import functools
import logging
from traceback import FrameSummary, extract_stack
from typing import Any, Callable, TypeVar, cast
from typing import Any, TypeVar, cast
from homeassistant.exceptions import HomeAssistantError