Import Callable from collections.abc (2) (#56776)

This commit is contained in:
Marc Mueller 2021-09-29 14:06:51 +02:00 committed by GitHub
parent 41e5f05d99
commit 565a9fea6b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
53 changed files with 100 additions and 65 deletions

View file

@ -3,11 +3,11 @@ from __future__ import annotations
import asyncio
from collections import defaultdict
from collections.abc import Coroutine
from collections.abc import Callable, Coroutine
import logging
import socket
import sys
from typing import Any, Callable
from typing import Any
import async_timeout
from mysensors import BaseAsyncGateway, Message, Sensor, mysensors