Update typing_extensions imports in third-party stubs (#11245)

This commit is contained in:
Sebastian Rittau
2024-01-05 15:40:13 +01:00
committed by GitHub
parent 1b471a9a0a
commit b6eaadcfe5
488 changed files with 715 additions and 845 deletions

View File

@@ -1,6 +1,6 @@
from abc import ABCMeta, abstractmethod
from typing import Any, ClassVar
from typing_extensions import Literal, Self
from typing import Any, ClassVar, Literal
from typing_extensions import Self
class PasswordHash(metaclass=ABCMeta):
is_disabled: ClassVar[bool]

View File

@@ -1,4 +1,4 @@
from typing_extensions import Literal
from typing import Literal
PY2: Literal[False]
PY3: Literal[True]