Skip to content

Commit 082c052

Browse files
committed
lint
1 parent 4e4e84e commit 082c052

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

array_api_compat/common/_aliases.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from __future__ import annotations
66

77
import inspect
8-
from typing import Any, NamedTuple, Optional, Sequence, Tuple, Union
8+
from typing import NamedTuple, Optional, Sequence, Tuple, Union
99

1010
from ._helpers import array_namespace, _check_device, device, is_torch_array, is_cupy_namespace
1111
from ._typing import Array, Device, DType, Namespace

array_api_compat/cupy/_typing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
__all__ = ["Array", "DType", "Device"]
44
_all_ignore = ["cp"]
55

6-
from typing import Union, TYPE_CHECKING
6+
from typing import TYPE_CHECKING
77

88
import cupy as cp
99
from cupy import ndarray as Array

0 commit comments

Comments
 (0)