Skip to content

Commit cb207aa

Browse files
committed
fix pep8
1 parent 775114a commit cb207aa

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/tests/arrays/test_integer.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -621,7 +621,8 @@ def test_to_integer_array_float():
621621
([False, True, np.nan], [0, 1, np.nan], Int64Dtype(), Int64Dtype()),
622622
([False, True], [0, 1], None, Int64Dtype()),
623623
([False, True, np.nan], [0, 1, np.nan], None, Int64Dtype())])
624-
def test_to_integer_array_bool(bool_values, int_values, target_dtype, expected_dtype):
624+
def test_to_integer_array_bool(bool_values, int_values, target_dtype,
625+
expected_dtype):
625626
result = integer_array(bool_values, dtype=target_dtype)
626627
assert result.dtype == expected_dtype
627628
expected = integer_array(int_values, dtype=target_dtype)

0 commit comments

Comments
 (0)