Skip to content

Commit b8deb1e

Browse files
committed
Fix line length in test_put.py
1 parent 0156542 commit b8deb1e

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

pandas/tests/io/pytables/test_put.py

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,9 @@ def test_put_compression_blosc(tmp_path, setup_path):
196196
tm.assert_frame_equal(store["c"], df)
197197

198198

199-
def test_put_datetime_ser(tmp_path, setup_path, performance_warning, using_infer_string):
199+
def test_put_datetime_ser(
200+
tmp_path, setup_path, performance_warning, using_infer_string
201+
):
200202
# https://github.com/pandas-dev/pandas/pull/60663
201203
ser = Series(3 * [Timestamp("20010102").as_unit("ns")])
202204
path = tmp_path / setup_path
@@ -239,7 +241,9 @@ def test_put_mixed_type(tmp_path, setup_path, performance_warning, using_infer_s
239241
tm.assert_frame_equal(expected, df)
240242

241243

242-
def test_put_str_frame(tmp_path, setup_path, performance_warning, string_dtype_arguments):
244+
def test_put_str_frame(
245+
tmp_path, setup_path, performance_warning, string_dtype_arguments
246+
):
243247
# https://github.com/pandas-dev/pandas/pull/60663
244248
dtype = pd.StringDtype(*string_dtype_arguments)
245249
df = DataFrame({"a": pd.array(["x", pd.NA, "y"], dtype=dtype)})
@@ -254,7 +258,9 @@ def test_put_str_frame(tmp_path, setup_path, performance_warning, string_dtype_a
254258
tm.assert_frame_equal(result, expected)
255259

256260

257-
def test_put_str_series(tmp_path, setup_path, performance_warning, string_dtype_arguments):
261+
def test_put_str_series(
262+
tmp_path, setup_path, performance_warning, string_dtype_arguments
263+
):
258264
# https://github.com/pandas-dev/pandas/pull/60663
259265
dtype = pd.StringDtype(*string_dtype_arguments)
260266
ser = Series(["x", pd.NA, "y"], dtype=dtype)

0 commit comments

Comments
 (0)