Skip to content

Commit

Permalink
Using import_string lib, removed utils package
Browse files Browse the repository at this point in the history
  • Loading branch information
rochacbruno committed Jun 30, 2016
1 parent b76a5af commit 75e1d4a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 117 deletions.
2 changes: 1 addition & 1 deletion manage/auto_import.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# coding: utf-8
import import_string
from six import exec_
from manage.utils import import_string


def get_name(obj, default):
Expand Down
2 changes: 1 addition & 1 deletion manage/commands_collector.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import click
import pkgutil
import import_string
from six import exec_
from inspect import getmembers
from click.core import BaseCommand
from manage.utils import import_string


def add_click_commands(module, cli, command_dict, namespaced):
Expand Down
114 changes: 0 additions & 114 deletions manage/utils.py

This file was deleted.

1 change: 1 addition & 0 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ cryptography==1.4
PyYAML==3.11
pytest==2.9.2
pytest-xdist==1.14
import_string
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
requirements = [
'Click>=6.0',
'PyYAML==3.11',
'six'
'six',
'import_string'
]

test_requirements = [
Expand Down

0 comments on commit 75e1d4a

Please sign in to comment.