Skip to content
This repository has been archived by the owner on Apr 29, 2020. It is now read-only.

Commit

Permalink
Remove * import (#60)
Browse files Browse the repository at this point in the history
Remove * import
  • Loading branch information
iamneha authored and aktech committed Apr 14, 2016
1 parent 92c90ce commit 5a58a2f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pydsa/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .bst import *
from .bst import BSTNode
from .selection_sort import selection_sort
from .bubble_sort import bubble_sort
from .insertion_sort import insertion_sort
Expand Down
2 changes: 1 addition & 1 deletion pydsa/tests/test_bst.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from pydsa.bst import *
from pydsa.bst import BSTNode


def test_bst():
Expand Down
2 changes: 1 addition & 1 deletion pydsa/tests/test_merge_sort .py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from pydsa.merge_sort import *
from pydsa.merge_sort import merge_sort
from random import randint


Expand Down
2 changes: 1 addition & 1 deletion pydsa/tests/test_quick_sort.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from pydsa.quick_sort import *
from pydsa.quick_sort import quick_sort
from random import randint


Expand Down
2 changes: 1 addition & 1 deletion pydsa/tests/test_selection_sort.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from pydsa.selection_sort import *
from pydsa.selection_sort import selection_sort
from random import randint


Expand Down
2 changes: 1 addition & 1 deletion pydsa/tests/test_sleep_sort.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from pydsa.sleep_sort import *
from pydsa.sleep_sort import sleep_sort
from random import randint


Expand Down

0 comments on commit 5a58a2f

Please sign in to comment.