Added AVL sort using inorder traversal and improved code quality #17459
Annotations
7 errors
|
ruff
Process completed with exit code 1.
|
|
ruff (W292):
data_structures/binary_tree/avl_tree.py#L165
data_structures/binary_tree/avl_tree.py:165:18: W292 No newline at end of file
help: Add trailing newline
|
|
ruff (E501):
data_structures/binary_tree/avl_tree.py#L122
data_structures/binary_tree/avl_tree.py:122:89: E501 Line too long (90 > 88)
|
|
ruff (E501):
data_structures/binary_tree/avl_tree.py#L82
data_structures/binary_tree/avl_tree.py:82:89: E501 Line too long (90 > 88)
|
|
ruff (E501):
data_structures/binary_tree/avl_tree.py#L70
data_structures/binary_tree/avl_tree.py:70:89: E501 Line too long (90 > 88)
|
|
ruff (F401):
data_structures/binary_tree/avl_tree.py#L4
data_structures/binary_tree/avl_tree.py:4:8: F401 `random` imported but unused
help: Remove unused import: `random`
|
|
ruff (F401):
data_structures/binary_tree/avl_tree.py#L3
data_structures/binary_tree/avl_tree.py:3:8: F401 `math` imported but unused
help: Remove unused import: `math`
|