Skip to content

Commit 8076db0

Browse files
Fix : Lint Error
1 parent b59cf2e commit 8076db0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
class Solution:
22
def isPalindrome(self, s):
33
cleaned = [c.lower() for c in s if c.isalnum()]
4-
return cleaned == cleaned[::-1]
4+
return cleaned == cleaned[::-1]

0 commit comments

Comments
 (0)