Skip to content

Commit 1063bb6

Browse files
committed
Fix the generated code for the latest version of removestar
Hopefully this will be the last instance of this particular issue causing problems.
1 parent 184de15 commit 1063bb6

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

array_api_tests/special_cases/test_atanh.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
not modify it directly.
88
"""
99

10-
from ..array_helpers import NaN, assert_exactly_equal, exactly_equal, greater, infinity, less, one, zero
10+
from ..array_helpers import (NaN, assert_exactly_equal, exactly_equal, greater, infinity, less, one,
11+
zero)
1112
from ..hypothesis_helpers import numeric_arrays
1213
from .._array_module import atanh
1314

array_api_tests/special_cases/test_sign.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
not modify it directly.
88
"""
99

10-
from ..array_helpers import assert_exactly_equal, exactly_equal, greater, less, logical_or, one, zero
10+
from ..array_helpers import (assert_exactly_equal, exactly_equal, greater, less, logical_or, one,
11+
zero)
1112
from ..hypothesis_helpers import numeric_arrays
1213
from .._array_module import sign
1314

0 commit comments

Comments
 (0)