Skip to content

Commit 912c55e

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent f103d68 commit 912c55e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_text.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@ def test_api():
3737
assert len(text) == 0
3838
text[:] = hello + world + punct
3939
assert str(text) == hello + world + punct
40-
text[len(hello):len(hello) + len(world)] = " Sir"
40+
text[len(hello) : len(hello) + len(world)] = " Sir"
4141
assert str(text) == hello + " Sir" + punct

0 commit comments

Comments
 (0)