Skip to content

Commit 9b68e1b

Browse files
committed
fix typo in type hint
1 parent 6d569f8 commit 9b68e1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

funlib/persistence/arrays/array.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def __init__(
7272
axis_names: Optional[Iterable[str]] = None,
7373
units: Optional[Iterable[str]] = None,
7474
chunks: Optional[Union[int, Iterable[int], str]] = "auto",
75-
adapter: Optional[Union[Adapter, Iterable[Adapter]]] = None,
75+
adapter: Optional[Adapter] = None,
7676
):
7777
self.data = da.from_array(data, chunks=chunks)
7878
self._uncollapsed_dims = [True for _ in self.data.shape]

0 commit comments

Comments
 (0)