Skip to content

Commit 4a859fd

Browse files
committed
fix syntax errors
1 parent 885094b commit 4a859fd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+68
-68
lines changed

stdlib/_codecs.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import codecs
22
import sys
3-
from typing import Any, Callable, Dict, Tuple,
3+
from typing import Any, Callable, Dict, Tuple
44

55
# This type is not exposed; it is defined in unicodeobject.c
66
class _EncodingMap:

stdlib/_csv.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from typing import Any, Iterable, Iterator, List, Protocol, Type,
1+
from typing import Any, Iterable, Iterator, List, Protocol, Type
22

33
QUOTE_ALL: int
44
QUOTE_MINIMAL: int

stdlib/_typeshed/__init__.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import ctypes
77
import mmap
88
import sys
99
from os import PathLike
10-
from typing import AbstractSet, Any, Awaitable, Container, Iterable, Protocol, TypeVar,
10+
from typing import AbstractSet, Any, Awaitable, Container, Iterable, Protocol, TypeVar
1111
from typing_extensions import Literal, final
1212

1313
_KT = TypeVar("_KT")

stdlib/asyncio/base_subprocess.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import subprocess
22
from collections import deque
3-
from typing import IO, Any, Callable, Sequence, Tuple,
3+
from typing import IO, Any, Callable, Sequence, Tuple
44

55
from . import events, futures, protocols, transports
66

stdlib/asyncio/streams.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import sys
22
from _typeshed import StrPath
3-
from typing import Any, AsyncIterator, Awaitable, Callable, Iterable,
3+
from typing import Any, AsyncIterator, Awaitable, Callable, Iterable
44

55
from . import events, protocols, transports
66
from .base_events import Server

stdlib/asyncio/subprocess.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import subprocess
22
import sys
33
from _typeshed import StrOrBytesPath
44
from asyncio import events, protocols, streams, transports
5-
from typing import IO, Any, Callable,
5+
from typing import IO, Any, Callable
66
from typing_extensions import Literal
77

88
if sys.version_info >= (3, 8):

stdlib/binhex.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from typing import IO, Any, Tuple,
1+
from typing import IO, Any, Tuple
22

33
class Error(Exception): ...
44

stdlib/cmath.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import sys
2-
from typing import SupportsComplex, SupportsFloat,
2+
from typing import SupportsComplex, SupportsFloat
33

44
if sys.version_info >= (3, 8):
55
from typing import SupportsIndex

stdlib/copyreg.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from typing import Any, Callable, Hashable, SupportsInt, Tuple, TypeVar,
1+
from typing import Any, Callable, Hashable, SupportsInt, Tuple, TypeVar
22

33
_TypeT = TypeVar("_TypeT", bound=type)
44
_Reduce = Tuple[Callable[..., _TypeT], Tuple[Any, ...]] | Tuple[Callable[..., _TypeT], Tuple[Any, ...], Any | None]

stdlib/dbm/__init__.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from _typeshed import Self
22
from types import TracebackType
3-
from typing import Iterator, MutableMapping, Type,
3+
from typing import Iterator, MutableMapping, Type
44
from typing_extensions import Literal
55

66
_KeyType = str | bytes

0 commit comments

Comments
 (0)