Skip to content
This repository was archived by the owner on Jul 2, 2024. It is now read-only.

Commit e579f11

Browse files
committed
Fix sorting package imports
1 parent fa27184 commit e579f11

File tree

1 file changed

+4
-12
lines changed

1 file changed

+4
-12
lines changed

src/sorting/__init__.py

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -61,21 +61,13 @@
6161
"heap_sort",
6262
"insertion_sort",
6363
"merge_sort",
64+
"merge_lists",
6465
"quick_sort",
6566
"radix_sort",
6667
"selection_sort",
6768
"shell_sort"
6869
]
6970

70-
from sorting.func import (
71-
bubble_sort,
72-
bucket_sort,
73-
counting_sort,
74-
heap_sort,
75-
insertion_sort,
76-
merge_sort,
77-
quick_sort,
78-
radix_sort,
79-
selection_sort,
80-
shell_sort,
81-
)
71+
from sorting.func import (bubble_sort, bucket_sort, counting_sort, heap_sort,
72+
insertion_sort, merge_lists, merge_sort, quick_sort,
73+
radix_sort, selection_sort, shell_sort)

0 commit comments

Comments
 (0)