implement segment tree using node (new .py file in data_structures/binary_tree/segment_tree_node.py) #12875
Annotations
7 errors
ruff
Process completed with exit code 1.
|
Ruff (W292):
data_structures/binary_tree/segment_tree_node.py#L150
data_structures/binary_tree/segment_tree_node.py:150:60: W292 No newline at end of file
|
Ruff (E501):
data_structures/binary_tree/segment_tree_node.py#L126
data_structures/binary_tree/segment_tree_node.py:126:89: E501 Line too long (90 > 88)
|
Ruff (PLR5501):
data_structures/binary_tree/segment_tree_node.py#L103
data_structures/binary_tree/segment_tree_node.py:103:9: PLR5501 Use `elif` instead of `else` then `if`, to reduce indentation
|
Ruff (E501):
data_structures/binary_tree/segment_tree_node.py#L81
data_structures/binary_tree/segment_tree_node.py:81:89: E501 Line too long (95 > 88)
|
Ruff (UP039):
data_structures/binary_tree/segment_tree_node.py#L10
data_structures/binary_tree/segment_tree_node.py:10:18: UP039 Unnecessary parentheses after class definition
|
Ruff (UP039):
data_structures/binary_tree/segment_tree_node.py#L1
data_structures/binary_tree/segment_tree_node.py:1:11: UP039 Unnecessary parentheses after class definition
|