Skip to content

Commit f737870

Browse files
committed
Pass black pandas again
1 parent 60c833c commit f737870

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pandas/tests/io/json/test_deprecated_kwargs.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,7 @@ def test_good_kwargs():
3434
df = pd.DataFrame({"A": [2, 4, 6], "B": [3, 6, 9]}, index=[0, 1, 2])
3535
with tm.assert_produces_warning(None):
3636
assert_frame_equal(df, read_json(df.to_json(orient="split"), orient="split"))
37-
assert_frame_equal(df, read_json(df.to_json(orient="columns"), orient="columns"))
37+
assert_frame_equal(
38+
df, read_json(df.to_json(orient="columns"), orient="columns")
39+
)
3840
assert_frame_equal(df, read_json(df.to_json(orient="index"), orient="index"))

0 commit comments

Comments
 (0)