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

@ -1,10 +1,10 @@
"""Config flow for DLNA DMR."""
from __future__ import annotations
from collections.abc import Callable
from collections.abc import Callable, Mapping
import logging
from pprint import pformat
from typing import Any, Mapping, Optional, cast
from typing import Any, Optional, cast
from urllib.parse import urlparse
from async_upnp_client.client import UpnpError