Skip to content

Commit 10f2468

Browse files
committed
TST: Update linting from Black to CI required for spacing (pandas-dev#32409)
1 parent d4d42ba commit 10f2468

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

pandas/tests/frame/methods/test_describe.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -307,5 +307,11 @@ def test_describe_does_not_raise_error(self):
307307
)
308308
result = df.describe()
309309
tm.assert_frame_equal(result, expected)
310-
exp_repr = " test\n" "count 2\n" "unique 2\n" "top {'a': '1'}\n" "freq 1"
310+
exp_repr = (
311+
" test\n"
312+
"count 2\n"
313+
"unique 2\n"
314+
"top {'a': '1'}\n"
315+
"freq 1"
316+
)
311317
assert repr(result) == exp_repr

0 commit comments

Comments
 (0)