From 8ca96b2c949d23dd9fbfc7896845aa79dd2f0181 Mon Sep 17 00:00:00 2001 From: Aaron Meurer Date: Fri, 9 Jul 2021 16:38:08 -0600 Subject: Fix some typing imports --- numpy/_array_api/_statistical_functions.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'numpy/_array_api/_statistical_functions.py') diff --git a/numpy/_array_api/_statistical_functions.py b/numpy/_array_api/_statistical_functions.py index 9e032adf0..61fc60c46 100644 --- a/numpy/_array_api/_statistical_functions.py +++ b/numpy/_array_api/_statistical_functions.py @@ -2,9 +2,7 @@ from __future__ import annotations from ._array_object import Array -from typing import TYPE_CHECKING -if TYPE_CHECKING: - from ._typing import Optional, Tuple, Union +from typing import Optional, Tuple, Union import numpy as np -- cgit v1.2.1