Skip to content

Commit 2f1666d

Browse files
committed
fix some style errors
1 parent 37f6edb commit 2f1666d

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

pandas/tests/frame/test_replace.py

+7-5
Original file line numberDiff line numberDiff line change
@@ -1298,11 +1298,13 @@ def test_replace_method(self, to_replace, method, expected):
12981298

12991299
@pytest.mark.parametrize(
13001300
"replacer",
1301-
[pd.Timestamp("20170827"),
1302-
np.int8(1),
1303-
np.int16(1),
1304-
np.float32(1),
1305-
np.float64(1)],
1301+
[
1302+
pd.Timestamp("20170827"),
1303+
np.int8(1),
1304+
np.int16(1),
1305+
np.float32(1),
1306+
np.float64(1),
1307+
],
13061308
)
13071309
def test_replace_replacer_dtype(self, replacer):
13081310
# GH26632

0 commit comments

Comments
 (0)