Skip to content

Commit cca7cdb

Browse files
delete blank line
1 parent 12887b7 commit cca7cdb

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

sorts/bucket_sort.py

-1
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,5 @@ def bucket_sort(my_list: list) -> list:
6363
from doctest import testmod
6464

6565
testmod()
66-
6766
assert bucket_sort([4, 5, 3, 2, 1]) == [1, 2, 3, 4, 5]
6867
assert bucket_sort([0, 1, -10, 15, 2, -2]) == [-10, -2, 0, 1, 2, 15]

0 commit comments

Comments
 (0)