Suffix Tree Data Structure Implementation #9559
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#L7
data_structures/suffix_tree/suffix_tree_node.py:7:28: RUF013 PEP 484 prohibits implicit `Optional`
|
Ruff (UP006):
data_structures/suffix_tree/suffix_tree_node.py#L7
data_structures/suffix_tree/suffix_tree_node.py:7:28: UP006 Use `dict` instead of `Dict` for type annotation
|
Ruff (UP037):
data_structures/suffix_tree/suffix_tree_node.py#L7
data_structures/suffix_tree/suffix_tree_node.py:7:38: UP037 Remove quotes from type annotation
|
Ruff (E501):
data_structures/suffix_tree/suffix_tree_node.py#L16
data_structures/suffix_tree/suffix_tree_node.py:16:89: E501 Line too long (119 > 88)
|
Ruff (E501):
data_structures/suffix_tree/suffix_tree_node.py#L17
data_structures/suffix_tree/suffix_tree_node.py:17:89: E501 Line too long (120 > 88)
|
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 (102 > 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 (98 > 88)
|