Skip to content

Commit e1dd216

Browse files
committed
Get rid of unnecessary import; improve makefile
1 parent 420714a commit e1dd216

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
install:
2-
pip install -e .[dev] --upgrade
2+
pip install -e .[dev] --upgrade --process-dependency-links
33
pip install tox
44

55
test:

gcm/utils.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
try:
2-
from django.utils.module_loading import import_module
3-
except ImportError:
4-
# django <1.9
5-
from django.utils.importlib import import_module
1+
from django.utils.module_loading import import_module
62

73

84
def load_object(object_path):

0 commit comments

Comments
 (0)