mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-30 22:55:24 +08:00
Update typing_extensions imports in third-party stubs (#11245)
This commit is contained in:
@@ -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]
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
from typing_extensions import Literal
|
||||
from typing import Literal
|
||||
|
||||
PY2: Literal[False]
|
||||
PY3: Literal[True]
|
||||
|
||||
Reference in New Issue
Block a user