Added tests #17372
Annotations
5 errors
|
ruff
Process completed with exit code 1.
|
|
ruff (W292):
test_palidrome.py#L9
test_palidrome.py:9:43: W292 No newline at end of file
help: Add trailing newline
|
|
ruff (E712):
test_palidrome.py#L9
test_palidrome.py:9:12: E712 Avoid equality comparisons to `False`; use `not is_palindrome("hello"):` for false checks
help: Replace with `not is_palindrome("hello")`
|
|
ruff (E712):
test_palidrome.py#L5
test_palidrome.py:5:12: E712 Avoid equality comparisons to `True`; use `is_palindrome("level"):` for truth checks
help: Replace with `is_palindrome("level")`
|
|
ruff (W292):
test_my_test.py#L2
test_my_test.py:2:22: W292 No newline at end of file
help: Add trailing newline
|