Skip to content

Commit ec2ca66

Browse files
committed
fix lint
1 parent 6edf782 commit ec2ca66

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

doc/source/whatsnew/v2.0.1.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ including other versions of pandas.
1313

1414
Fixed regressions
1515
~~~~~~~~~~~~~~~~~
16-
- Fixed regression in :func:`merge` when dtype is `np.intc` (:issue:`52451`)
16+
- Fixed regression in :func:`merge` when dtype is ``np.intc`` (:issue:`52451`)
1717
-
1818

1919
.. ---------------------------------------------------------------------------

pandas/tests/reshape/merge/test_merge.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1463,7 +1463,9 @@ def test_different(self, right_vals):
14631463
result = merge(left, right, on="A")
14641464
assert is_object_dtype(result.A.dtype)
14651465

1466-
@pytest.mark.parametrize("d1", [np.int64, np.int32, np.intc, np.int16, np.int8, np.uint8])
1466+
@pytest.mark.parametrize(
1467+
"d1", [np.int64, np.int32, np.intc, np.int16, np.int8, np.uint8]
1468+
)
14671469
@pytest.mark.parametrize("d2", [np.int64, np.float64, np.float32, np.float16])
14681470
def test_join_multi_dtypes(self, d1, d2):
14691471
dtype1 = np.dtype(d1)

0 commit comments

Comments
 (0)