Skip to content

Commit a22423d

Browse files
committed
TST: Update linting from Black to CI required for spacing (#32409)
1 parent 4c66d90 commit a22423d

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

pandas/tests/frame/methods/test_describe.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,5 +385,11 @@ def test_describe_does_not_raise_error(self):
385385
)
386386
result = df.describe()
387387
tm.assert_frame_equal(result, expected)
388-
exp_repr = " test\n" "count 2\n" "unique 2\n" "top {'a': '1'}\n" "freq 1"
388+
exp_repr = (
389+
" test\n"
390+
"count 2\n"
391+
"unique 2\n"
392+
"top {'a': '1'}\n"
393+
"freq 1"
394+
)
389395
assert repr(result) == exp_repr

0 commit comments

Comments
 (0)