Skip to content

Commit

Permalink
Import order fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugo Geoffroy committed Jul 24, 2014
1 parent 4a1c927 commit 8b9d9cf
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions django_crucrudile/routes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,9 @@
from django_crucrudile.entities import Entity
from django_crucrudile.urlutils import URLBuilder

from .arguments import ArgumentsMixin


__all__ = [
'Route',
'BaseRoute', 'Route',
'CallbackRoute',
'ViewRoute',
'ModelRoute', 'ModelViewRoute'
Expand Down Expand Up @@ -89,7 +87,7 @@ def __init__(self,
name=None, url_part=None,
**kwargs):
"""Initialize Route, check that needed attributes/arguments are
defined.
defined.
"""
if name is not None:
Expand Down Expand Up @@ -195,6 +193,7 @@ class Route(ArgumentsMixin, BaseRoute):
pass


from .arguments import ArgumentsMixin
from .callback import CallbackRoute
from .view import ViewRoute
from .model import ModelRoute, ModelViewRoute

0 comments on commit 8b9d9cf

Please sign in to comment.