Skip to content

Commit 90c97d4

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
1 parent 83efd5d commit 90c97d4

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

stdlib/asyncio/coroutines.pyi

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,4 @@ def iscoroutinefunction(func: Callable[_P, object]) -> TypeGuard[Callable[_P, Co
2828
@overload
2929
@deprecated("Deprecated in Python 3.14; use inspect.iscoroutinefunction() instead")
3030
def iscoroutinefunction(func: object) -> TypeGuard[Callable[..., Coroutine[Any, Any, Any]]]: ...
31-
3231
def iscoroutine(obj: object) -> TypeIs[Coroutine[Any, Any, Any]]: ...

stdlib/os/__init__.pyi

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1436,7 +1436,6 @@ else:
14361436
def spawnlpe(mode: int, file: StrOrBytesPath, arg0: StrOrBytesPath, *args: Any) -> int: ... # Imprecise signature
14371437
def spawnvp(mode: int, file: StrOrBytesPath, args: _ExecVArgs) -> int: ...
14381438
def spawnvpe(mode: int, file: StrOrBytesPath, args: _ExecVArgs, env: _ExecEnv) -> int: ...
1439-
14401439
def wait() -> tuple[int, int]: ... # Unix only
14411440
# Added to MacOS in 3.13
14421441
if sys.platform != "darwin" or sys.version_info >= (3, 13):

0 commit comments

Comments
 (0)