Skip to content

Commit ce8ab1e

Browse files
committed
fix: Final resolution for W293 whitespace
1 parent ace6b50 commit ce8ab1e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

other/palindrome_check.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ def is_palindrome(text: str) -> bool:
2828
# is using slicing: text[::-1].
2929
# We compare the original string with its reversed version.
3030
return text == text[::-1]
31+
32+
3133
if __name__ == "__main__":
3234
# Standard boilerplate for running documentation examples as tests.
3335
import doctest

0 commit comments

Comments
 (0)