From 912c55ef01934c4d5639904899768007892bbf02 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 18 Dec 2023 10:17:47 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- tests/test_text.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_text.py b/tests/test_text.py index 88e6891..3bd22e5 100644 --- a/tests/test_text.py +++ b/tests/test_text.py @@ -37,5 +37,5 @@ def test_api(): assert len(text) == 0 text[:] = hello + world + punct assert str(text) == hello + world + punct - text[len(hello):len(hello) + len(world)] = " Sir" + text[len(hello) : len(hello) + len(world)] = " Sir" assert str(text) == hello + " Sir" + punct