Skip to content

Commit 876f040

Browse files
Chris LynchLynch
Chris Lynch
and
Lynch
authored
remove trailing commas for black update (#36399)
Co-authored-by: Lynch <[email protected]>
1 parent 15285e7 commit 876f040

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

pandas/tests/arrays/integer/test_arithmetic.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -279,9 +279,7 @@ def test_unary_minus_nullable_int(any_signed_nullable_int_dtype, source, target)
279279
tm.assert_extension_array_equal(result, expected)
280280

281281

282-
@pytest.mark.parametrize(
283-
"source", [[1, 2, 3], [1, 2, None], [-1, 0, 1]],
284-
)
282+
@pytest.mark.parametrize("source", [[1, 2, 3], [1, 2, None], [-1, 0, 1]])
285283
def test_unary_plus_nullable_int(any_signed_nullable_int_dtype, source):
286284
dtype = any_signed_nullable_int_dtype
287285
expected = pd.array(source, dtype=dtype)

0 commit comments

Comments
 (0)