Import names from typing instead of typing_extensions [3.11] (#97065)

This commit is contained in:
Marc Mueller
2023-07-23 00:03:44 +02:00
committed by GitHub
parent 7c55dbdb17
commit 77f38e33e5
45 changed files with 45 additions and 94 deletions

View File

@@ -7,9 +7,8 @@ import copy
from dataclasses import dataclass
import logging
from types import MappingProxyType
from typing import Any, TypedDict
from typing import Any, Required, TypedDict
from typing_extensions import Required
import voluptuous as vol
from .backports.enum import StrEnum