Skip to content

Commit 4758a16

Browse files
committed
Fix linting
1 parent 3bbbe9c commit 4758a16

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

datafusion/tests/test_functions.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,9 @@ def test_math_functions():
188188
np.testing.assert_array_almost_equal(result.column(32), np.sinh(values))
189189
np.testing.assert_array_almost_equal(result.column(33), np.tanh(values))
190190
np.testing.assert_array_almost_equal(result.column(34), math.factorial(6))
191-
np.testing.assert_array_almost_equal(result.column(35), np.isnan(na_values))
191+
np.testing.assert_array_almost_equal(
192+
result.column(35), np.isnan(na_values)
193+
)
192194
np.testing.assert_array_almost_equal(result.column(36), na_values == 0)
193195
np.testing.assert_array_almost_equal(
194196
result.column(37), np.emath.logn(3, values + 1.0)

0 commit comments

Comments
 (0)