Fix two minor typing issues

This commit is contained in:
Veronica Berglyd Olsen
2024-03-23 20:01:49 +01:00
parent ded03e10c5
commit 7ddb1819f2
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -120,7 +120,7 @@ def standardCounter(text: str) -> tuple[int, int, int]:
return cCount, wCount, pCount
def bodyTextCounter(text: str | list[str]) -> tuple[int, int, int]:
def bodyTextCounter(text: str) -> tuple[int, int, int]:
"""A counter that counts body text words, characters, and characters
without white spaces.
"""