Skip to content

Commit cc2a650

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

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
@@ -369,5 +369,11 @@ def test_describe_does_not_raise_error(self):
369369
)
370370
result = df.describe()
371371
tm.assert_frame_equal(result, expected)
372-
exp_repr = " test\n" "count 2\n" "unique 2\n" "top {'a': '1'}\n" "freq 1"
372+
exp_repr = (
373+
" test\n"
374+
"count 2\n"
375+
"unique 2\n"
376+
"top {'a': '1'}\n"
377+
"freq 1"
378+
)
373379
assert repr(result) == exp_repr

0 commit comments

Comments
 (0)