Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
judahrand committed Sep 12, 2023
1 parent 3bbbe9c commit 4758a16
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion datafusion/tests/test_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,9 @@ def test_math_functions():
np.testing.assert_array_almost_equal(result.column(32), np.sinh(values))
np.testing.assert_array_almost_equal(result.column(33), np.tanh(values))
np.testing.assert_array_almost_equal(result.column(34), math.factorial(6))
np.testing.assert_array_almost_equal(result.column(35), np.isnan(na_values))
np.testing.assert_array_almost_equal(
result.column(35), np.isnan(na_values)
)
np.testing.assert_array_almost_equal(result.column(36), na_values == 0)
np.testing.assert_array_almost_equal(
result.column(37), np.emath.logn(3, values + 1.0)
Expand Down

0 comments on commit 4758a16

Please sign in to comment.