Skip to content

Commit 6ba1f9b

Browse files
committed
fix pre-commit
1 parent b1e6639 commit 6ba1f9b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/test_funcs.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -724,7 +724,10 @@ def test_xp(self, xp: ModuleType):
724724
def test_device(self, xp: ModuleType, device: Device, equal_nan: bool):
725725
a = xp.asarray([0.0, 0.0, xp.nan], device=device)
726726
b = xp.asarray([1e-9, 1e-4, xp.nan], device=device)
727-
xp_assert_equal(isclose(a, b, equal_nan=equal_nan), xp.asarray([True, False, equal_nan]))
727+
xp_assert_equal(
728+
isclose(a, b, equal_nan=equal_nan), xp.asarray([True, False, equal_nan])
729+
)
730+
728731

729732
class TestKron:
730733
def test_basic(self, xp: ModuleType):

0 commit comments

Comments
 (0)