Skip to content

Commit

Permalink
import fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mnislam01 committed Jun 25, 2020
1 parent 06ab643 commit 4d1fe12
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion jet/dashboard/models.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from importlib import import_module
import json
from django.db import models
from django.utils.encoding import python_2_unicode_compatible
from six import python_2_unicode_compatible
from django.utils.translation import ugettext_lazy as _
from jet.utils import LazyDateTimeEncoder

Expand Down
2 changes: 1 addition & 1 deletion jet/models.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from django.db import models
from django.utils import timezone
from django.utils.encoding import python_2_unicode_compatible
from six import python_2_unicode_compatible
from django.utils.translation import ugettext_lazy as _


Expand Down
2 changes: 1 addition & 1 deletion jet/tests/models.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from django.db import models
from django.utils.encoding import python_2_unicode_compatible
from six import python_2_unicode_compatible


@python_2_unicode_compatible
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def read(fname):


def get_install_requires():
install_requires = ['Django']
install_requires = ['Django', 'six']

try:
import importlib
Expand Down

0 comments on commit 4d1fe12

Please sign in to comment.