Skip to content

Add Splay Tree implementation #13760 [hacktoberfest] #16432

Add Splay Tree implementation #13760 [hacktoberfest]

Add Splay Tree implementation #13760 [hacktoberfest] #16432

Triggered via pull request November 16, 2025 17:44
Status Failure
Total duration 8s
Artifacts

ruff.yml

on: pull_request
Fit to window
Zoom out
Zoom in

Annotations

10 errors
Ruff (UP006): dsa_programs/bellman_ford.py#L13
dsa_programs/bellman_ford.py:13:17: UP006 Use `set` instead of `Set` for type annotation
Ruff (UP006): dsa_programs/bellman_ford.py#L12
dsa_programs/bellman_ford.py:12:16: UP006 Use `list` instead of `List` for type annotation
Ruff (UP006): dsa_programs/bellman_ford.py#L11
dsa_programs/bellman_ford.py:11:6: UP006 Use `dict` instead of `Dict` for type annotation
Ruff (UP006): dsa_programs/bellman_ford.py#L6
dsa_programs/bellman_ford.py:6:8: UP006 Use `tuple` instead of `Tuple` for type annotation
Ruff (UP035): dsa_programs/bellman_ford.py#L3
dsa_programs/bellman_ford.py:3:1: UP035 `typing.Tuple` is deprecated, use `tuple` instead
Ruff (UP035): dsa_programs/bellman_ford.py#L3
dsa_programs/bellman_ford.py:3:1: UP035 `typing.Set` is deprecated, use `set` instead
Ruff (UP035): dsa_programs/bellman_ford.py#L3
dsa_programs/bellman_ford.py:3:1: UP035 `typing.List` is deprecated, use `list` instead
Ruff (UP035): dsa_programs/bellman_ford.py#L3
dsa_programs/bellman_ford.py:3:1: UP035 `typing.Dict` is deprecated, use `dict` instead
Ruff (UP035): dsa_programs/bellman_ford.py#L3
dsa_programs/bellman_ford.py:3:1: UP035 Import from `collections.abc` instead: `Iterable`
Ruff (I001): dsa_programs/__init__.py#L3
dsa_programs/__init__.py:3:1: I001 Import block is un-sorted or un-formatted