We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f103d68 commit 912c55eCopy full SHA for 912c55e
tests/test_text.py
@@ -37,5 +37,5 @@ def test_api():
37
assert len(text) == 0
38
text[:] = hello + world + punct
39
assert str(text) == hello + world + punct
40
- text[len(hello):len(hello) + len(world)] = " Sir"
+ text[len(hello) : len(hello) + len(world)] = " Sir"
41
assert str(text) == hello + " Sir" + punct
0 commit comments