Skip to content

Commit d1a33bc

Browse files
committed
Changed import line for PEP8 compliance
1 parent 4936858 commit d1a33bc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

algorithms/tests/test_sorting.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import random
22
import unittest
3-
from ..sorting import bubble_sort, selection_sort, insertion_sort, merge_sort, quick_sort, heap_sort, shell_sort, comb_sort, cocktail_sort
3+
from ..sorting import bubble_sort, selection_sort, insertion_sort, \
4+
merge_sort, quick_sort, heap_sort, shell_sort, comb_sort, cocktail_sort
45

56

67
class SortingAlgorithmTestCase(unittest.TestCase):

0 commit comments

Comments
 (0)