Skip to content

Commit

Permalink
optimized imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ierror committed May 19, 2016
1 parent 56a05e2 commit 5d2eed3
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion django_js_reverse/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# -*- coding: utf-8 -*-
VERSION = (0, 7, 1)
VERSION = (0, 7, 2)
3 changes: 2 additions & 1 deletion django_js_reverse/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@

from . import rjsmin
from .js_reverse_settings import (JS_EXCLUDE_NAMESPACES, JS_GLOBAL_OBJECT_NAME,
JS_MINIFY, JS_VAR_NAME, JS_INCLUDE_ONLY_NAMESPACES)
JS_INCLUDE_ONLY_NAMESPACES, JS_MINIFY,
JS_VAR_NAME)

if sys.version < '3':
text_type = unicode # NOQA
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
from django.core.files.base import ContentFile
from django.core.files.storage import FileSystemStorage
from django.core.management.base import BaseCommand

from django_js_reverse.core import generate_js
from django_js_reverse.js_reverse_settings import JS_OUTPUT_PATH

Expand Down
1 change: 0 additions & 1 deletion django_js_reverse/views.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# -*- coding: utf-8 -*-
from django.core import urlresolvers
from django.http import HttpResponse

from django_js_reverse.core import generate_js


Expand Down
1 change: 1 addition & 0 deletions tests/test_urls.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# -*- coding: utf-8 -*-
import sys
from copy import copy

from django.conf.urls import include, url
from django_js_reverse.views import urls_js

Expand Down

0 comments on commit 5d2eed3

Please sign in to comment.