diff --git a/source/BUG/structures.py b/source/BUG/structures.py index 382bb7a..fda64a1 100644 --- a/source/BUG/structures.py +++ b/source/BUG/structures.py @@ -74,7 +74,7 @@ def reverse_list(lst: list) -> list: """ BUG070: reverse_list should reverse the order of elements in the list, not sort it in descending order. """ - lst.sort(reverse=True) + lst.reverse() return lst