Skip to content

Commit 7acbe00

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
1 parent 4edbe0c commit 7acbe00

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stdlib/contextlib.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ from _typeshed import FileDescriptorOrPath, Unused
44
from abc import ABC, abstractmethod
55
from collections.abc import AsyncGenerator, AsyncIterator, Awaitable, Callable, Generator, Iterator
66
from types import TracebackType
7-
from typing import IO, Any, Generic, Protocol, TypeVar, Never, overload, runtime_checkable
7+
from typing import IO, Any, Generic, Never, Protocol, TypeVar, overload, runtime_checkable
88
from typing_extensions import ParamSpec, Self, TypeAlias
99

1010
__all__ = [
@@ -101,7 +101,7 @@ if sys.version_info >= (3, 10):
101101
class AsyncContextDecorator(Generic[_SuppressedExcReturnT]):
102102
def _recreate_cm(self) -> Self: ...
103103
def __call__(self, func: Callable[_P, _R]) -> Callable[_P, _R | _SuppressedExcReturnT]: ...
104-
104+
105105
class _AsyncGeneratorContextManager(
106106
_GeneratorContextManagerBase[AsyncGenerator[_T_co, _SendT_contra]],
107107
AbstractAsyncContextManager[_T_co, bool | None],

0 commit comments

Comments
 (0)