Skip to content

Commit

Permalink
reversing import change and added absolute import in __init__
Browse files Browse the repository at this point in the history
  • Loading branch information
Miroslav Shubernetskiy committed Apr 27, 2017
1 parent 75651e9 commit 3cb865d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,3 @@ docs/_build
*.ropeproject
*.swp
.venv

2 changes: 1 addition & 1 deletion drf_braces/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
from __future__ import print_function, unicode_literals
from __future__ import absolute_import, print_function, unicode_literals


__author__ = 'Miroslav Shubernetskiy'
Expand Down
2 changes: 1 addition & 1 deletion drf_braces/tests/fields/test_custom.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import mock
import pytz

from drf_braces.fields import (
from drf_braces.fields.custom import (
NonValidatingChoiceField,
PositiveIntegerField,
RoundedDecimalField,
Expand Down

0 comments on commit 3cb865d

Please sign in to comment.