Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 66d1ebf

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
1 parent 9061757 commit 66d1ebf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

stdlib/csv.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ from _csv import (
2323
)
2424

2525
if sys.version_info >= (3, 12):
26-
from _csv import QUOTE_STRINGS as QUOTE_STRINGS, QUOTE_NOTNULL as QUOTE_NOTNULL
26+
from _csv import QUOTE_NOTNULL as QUOTE_NOTNULL, QUOTE_STRINGS as QUOTE_STRINGS
2727
from _typeshed import SupportsWrite
2828
from collections.abc import Collection, Iterable, Iterator, Mapping, Sequence
2929
from typing import Any, Generic, TypeVar, overload

stdlib/typing_extensions.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ __all__ = [
113113

114114
_T = typing.TypeVar("_T")
115115
_F = typing.TypeVar("_F", bound=Callable[..., Any])
116-
_TC = typing.TypeVar("_TC", bound=Type[object])
116+
_TC = typing.TypeVar("_TC", bound=type[object])
117117

118118
# unfortunately we have to duplicate this class definition from typing.pyi or we break pytype
119119
class _SpecialForm:

0 commit comments

Comments
 (0)