Skip to content

Commit 6ff34f9

Browse files
committed
Update isbn_verifier.py
1 parent 9c8b3f7 commit 6ff34f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

isbn-verifier/isbn_verifier.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def formatted_isbn(isbn: str) -> list[int]:
4040
Ignores non-digit characters except for trailing 'X'.
4141
4242
:param isbn: ISBN string that may contain digits, hyphens, and trailing 'X'
43-
:return: List of integers representing ISBN digits, with 'X' converted to 10
43+
:return: List of integers representing ISBN digits, 'X' converted to 10
4444
"""
4545
result: list[int] = []
4646
for char in isbn:

0 commit comments

Comments
 (0)