From f03113cffb621b6d0e2a87aa136231b0861e7620 Mon Sep 17 00:00:00 2001 From: jorenham Date: Fri, 10 Oct 2025 20:53:41 +0200 Subject: [PATCH] TYP: fix ruff error in ``_core/_ufunc_config.pyi`` --- numpy/_core/_ufunc_config.pyi | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/numpy/_core/_ufunc_config.pyi b/numpy/_core/_ufunc_config.pyi index 4443f7c2725f..6c95fb8f3e84 100644 --- a/numpy/_core/_ufunc_config.pyi +++ b/numpy/_core/_ufunc_config.pyi @@ -1,8 +1,9 @@ from collections.abc import Callable -from _typeshed import SupportsWrite from types import TracebackType from typing import Any, Final, Literal, TypeAlias, TypedDict, TypeVar, type_check_only +from _typeshed import SupportsWrite + __all__ = [ "seterr", "geterr",