mirror of
https://github.com/umap-project/umap.git
synced 2025-04-29 03:42:37 +02:00
lint: fix imports order
This commit is contained in:
parent
11d3152682
commit
2a2a4be357
3 changed files with 3 additions and 3 deletions
|
@ -7,7 +7,7 @@ from django.core.files.base import ContentFile
|
|||
from django.urls import reverse
|
||||
|
||||
from umap.forms import DEFAULT_CENTER
|
||||
from umap.models import DataLayer, Licence, Map, TileLayer, Team
|
||||
from umap.models import DataLayer, Licence, Map, Team, TileLayer
|
||||
|
||||
User = get_user_model()
|
||||
|
||||
|
|
|
@ -9,9 +9,9 @@ from umap.models import Map
|
|||
|
||||
from .base import (
|
||||
DataLayerFactory,
|
||||
TeamFactory,
|
||||
LicenceFactory,
|
||||
MapFactory,
|
||||
TeamFactory,
|
||||
TileLayerFactory,
|
||||
UserFactory,
|
||||
)
|
||||
|
|
|
@ -15,8 +15,8 @@ from . import views
|
|||
from .decorators import (
|
||||
can_edit_map,
|
||||
can_view_map,
|
||||
team_members_only,
|
||||
login_required_if_not_anonymous_allowed,
|
||||
team_members_only,
|
||||
)
|
||||
from .utils import decorated_patterns
|
||||
|
||||
|
|
Loading…
Reference in a new issue