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
+1 -1
View File
@@ -1,7 +1,7 @@
import datetime
from collections.abc import Iterable
from decimal import Decimal
from typing_extensions import TypedDict
from typing import TypedDict
from .feedback import _Feedback
from .matching import _Match
+1 -1
View File
@@ -1,5 +1,5 @@
from collections.abc import Sequence
from typing_extensions import Literal, TypedDict
from typing import Literal, TypedDict
from .matching import _Match
+2 -2
View File
@@ -1,8 +1,8 @@
from collections.abc import Iterable, Mapping
from decimal import Decimal
from re import Pattern
from typing import Any
from typing_extensions import Literal, NotRequired, TypedDict
from typing import Any, Literal, TypedDict
from typing_extensions import NotRequired
from .adjacency_graphs import _Graph
+1 -1
View File
@@ -1,7 +1,7 @@
from collections.abc import Iterable
from decimal import Decimal
from re import Pattern
from typing_extensions import TypedDict
from typing import TypedDict
from .adjacency_graphs import _Graph
from .matching import _Match
+1 -1
View File
@@ -1,5 +1,5 @@
from decimal import Decimal
from typing_extensions import Literal, TypedDict
from typing import Literal, TypedDict
class _TimeEstimate(TypedDict):
crack_times_seconds: _CrackTimeSeconds