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,4 +1,4 @@
from typing_extensions import Literal
from typing import Literal
EVENTUAL: Literal[2]
EVENTUAL_CONSISTENCY: Literal[2]

View File

@@ -1,8 +1,8 @@
import datetime
from _typeshed import Unused
from collections.abc import Callable, Iterable, Sequence
from typing import Any, NoReturn
from typing_extensions import Literal, Self, TypeAlias
from typing import Any, Literal, NoReturn
from typing_extensions import Self, TypeAlias
from google.cloud.ndb import exceptions, key as key_module, query as query_module, tasklets as tasklets_module