Skip to content

Commit 1933f57

Browse files
committed
fixup
1 parent 46c2c11 commit 1933f57

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/v3/test_array.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ def test_create_positional_args_deprecated() -> None:
144144
Array.create(store, (2, 2), dtype="f8")
145145

146146

147-
def test_selection_positional_args_deprecated():
147+
def test_selection_positional_args_deprecated() -> None:
148148
store = MemoryStore({}, mode="w")
149149
arr = Array.create(store, shape=(2, 2), dtype="f8")
150150

tests/v3/test_buffer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
from __future__ import annotations
2+
23
from typing import TYPE_CHECKING
34

45
import numpy as np
@@ -32,7 +33,6 @@
3233
import types
3334

3435

35-
3636
def test_nd_array_like(xp: types.ModuleType) -> None:
3737
ary = xp.arange(10)
3838
assert isinstance(ary, ArrayLike)

0 commit comments

Comments
 (0)