Implemented Suffix Tree Data Structure #9561
This run and associated checks have been archived and are scheduled for deletion.
Learn more about checks retention
Annotations
10 errors
Ruff (I001):
data_structures/suffix_tree/suffix_tree_node.py#L1
data_structures/suffix_tree/suffix_tree_node.py:1:1: I001 Import block is un-sorted or un-formatted
|
Ruff (UP035):
data_structures/suffix_tree/suffix_tree_node.py#L2
data_structures/suffix_tree/suffix_tree_node.py:2:1: UP035 `typing.Dict` is deprecated, use `dict` instead
|
Ruff (F401):
data_structures/suffix_tree/suffix_tree_node.py#L2
data_structures/suffix_tree/suffix_tree_node.py:2:26: F401 `typing.Optional` imported but unused
|
Ruff (RUF013):
data_structures/suffix_tree/suffix_tree_node.py#L8
data_structures/suffix_tree/suffix_tree_node.py:8:19: RUF013 PEP 484 prohibits implicit `Optional`
|
Ruff (UP006):
data_structures/suffix_tree/suffix_tree_node.py#L8
data_structures/suffix_tree/suffix_tree_node.py:8:19: UP006 Use `dict` instead of `Dict` for type annotation
|
Ruff (UP037):
data_structures/suffix_tree/suffix_tree_node.py#L8
data_structures/suffix_tree/suffix_tree_node.py:8:29: UP037 Remove quotes from type annotation
|
Ruff (E501):
data_structures/suffix_tree/suffix_tree_node.py#L18
data_structures/suffix_tree/suffix_tree_node.py:18:89: E501 Line too long (119 > 88)
|
Ruff (E501):
data_structures/suffix_tree/suffix_tree_node.py#L19
data_structures/suffix_tree/suffix_tree_node.py:19:89: E501 Line too long (120 > 88)
|
Ruff (E501):
data_structures/suffix_tree/suffix_tree_node.py#L20
data_structures/suffix_tree/suffix_tree_node.py:20:89: E501 Line too long (102 > 88)
|
Ruff (E501):
data_structures/suffix_tree/suffix_tree_node.py#L21
data_structures/suffix_tree/suffix_tree_node.py:21:89: E501 Line too long (98 > 88)
|