Skip to content

feat(sorts): add bubble sort algorithm for beginners #9869

feat(sorts): add bubble sort algorithm for beginners

feat(sorts): add bubble sort algorithm for beginners #9869

Triggered via pull request October 1, 2024 18:15
Status Failure
Total duration 16s
Artifacts

ruff.yml

on: pull_request
Fit to window
Zoom out
Zoom in

Annotations

10 errors
Ruff (UP035): sorts/simple_bubble_sort.py#L1
sorts/simple_bubble_sort.py:1:1: UP035 `typing.List` is deprecated, use `list` instead
Ruff (I001): sorts/simple_bubble_sort.py#L1
sorts/simple_bubble_sort.py:1:1: I001 Import block is un-sorted or un-formatted
Ruff (UP006): sorts/simple_bubble_sort.py#L3
sorts/simple_bubble_sort.py:3:23: UP006 Use `list` instead of `List` for type annotation
Ruff (UP006): sorts/simple_bubble_sort.py#L3
sorts/simple_bubble_sort.py:3:37: UP006 Use `list` instead of `List` for type annotation
Ruff (E501): sorts/simple_bubble_sort.py#L5
sorts/simple_bubble_sort.py:5:89: E501 Line too long (128 > 88)
Ruff (E501): sorts/simple_bubble_sort.py#L10
sorts/simple_bubble_sort.py:10:89: E501 Line too long (105 > 88)
Ruff (E501): sorts/simple_bubble_sort.py#L11
sorts/simple_bubble_sort.py:11:89: E501 Line too long (91 > 88)
Ruff (E501): sorts/simple_bubble_sort.py#L12
sorts/simple_bubble_sort.py:12:89: E501 Line too long (92 > 88)
Ruff (PIE808): sorts/simple_bubble_sort.py#L18
sorts/simple_bubble_sort.py:18:24: PIE808 Unnecessary `start` argument in `range`
Ruff (W292): sorts/simple_bubble_sort.py#L25
sorts/simple_bubble_sort.py:25:35: W292 No newline at end of file