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

Commit

Permalink
Fix sorting package imports
Browse files Browse the repository at this point in the history
  • Loading branch information
shorodilov committed Jan 6, 2024
1 parent fa27184 commit e579f11
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions src/sorting/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,21 +61,13 @@
"heap_sort",
"insertion_sort",
"merge_sort",
"merge_lists",
"quick_sort",
"radix_sort",
"selection_sort",
"shell_sort"
]

from sorting.func import (
bubble_sort,
bucket_sort,
counting_sort,
heap_sort,
insertion_sort,
merge_sort,
quick_sort,
radix_sort,
selection_sort,
shell_sort,
)
from sorting.func import (bubble_sort, bucket_sort, counting_sort, heap_sort,
insertion_sort, merge_lists, merge_sort, quick_sort,
radix_sort, selection_sort, shell_sort)

0 comments on commit e579f11

Please sign in to comment.