Skip to content

Commit 7672fa6

Browse files
committed
Reformat with black
1 parent a74e473 commit 7672fa6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/tests/dtypes/test_inference.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -557,7 +557,8 @@ def test_maybe_convert_objects_nullable_integer(self):
557557
arr = np.array([2, np.NaN], dtype=object)
558558
result = lib.maybe_convert_objects(arr, convert_to_nullable_integer=1)
559559
from pandas.core.arrays import IntegerArray
560-
exp = IntegerArray(np.array([2, 0], dtype='i8'), np.array([False, True]))
560+
561+
exp = IntegerArray(np.array([2, 0], dtype="i8"), np.array([False, True]))
561562
tm.assert_equal(result, exp)
562563

563564
def test_mixed_dtypes_remain_object_array(self):

0 commit comments

Comments
 (0)