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 Oct 31, 2024
1 parent 8ac8a7d commit 95d29c7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/test_tinytext.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,12 @@ def test_something() -> None:
# Assert
assert tiny == "ᶦᶰᵗᵒ ᵗᶦᶰᶦᵉʳ ᵗᵉˣᵗ"


def test_for_digits() -> None:
# Arrange
numbers = ''.join(str(character) for character in range(9, -1, -1)) # numbers = 9876543210
numbers = "".join(
str(character) for character in range(9, -1, -1)
) # numbers = 9876543210

# Act
tiny: str = tinytext.tinytext(numbers)
Expand Down

0 comments on commit 95d29c7

Please sign in to comment.