From 523192c1b25284a19b972901925a9aece3721457 Mon Sep 17 00:00:00 2001 From: axelyahirgonzalesmartinez541-gif Date: Sun, 8 Mar 2026 23:49:55 -0600 Subject: [PATCH] Revert "Fix return type description in bubble_sort.py (#14137)" This reverts commit 589d12972d185872b955633f9e7879fb6ecc4317. --- sorts/bubble_sort.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sorts/bubble_sort.py b/sorts/bubble_sort.py index 77d173290aff..b09a2afed928 100644 --- a/sorts/bubble_sort.py +++ b/sorts/bubble_sort.py @@ -6,7 +6,7 @@ def bubble_sort_iterative(collection: list[Any]) -> list[Any]: :param collection: some mutable ordered collection with heterogeneous comparable items inside - :return: the same collection ordered in ascending order + :return: the same collection ordered by ascending Examples: >>> bubble_sort_iterative([0, 5, 2, 3, 2])