Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Dec 18, 2023
1 parent f103d68 commit 912c55e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_text.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 912c55e

Please sign in to comment.