Skip to content

Commit 3e32827

Browse files
committed
lint: isort
1 parent 549a1d2 commit 3e32827

File tree

6 files changed

+7
-4
lines changed

6 files changed

+7
-4
lines changed

pyconkr/settings-dev.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import os
2+
23
from pyconkr.settings import *
34

45
DEBUG = True

pyconkr/settings-prod.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import os
2+
23
from pyconkr.settings import *
34

45
DEBUG = False

pyconkr/urls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
1515
"""
1616
from django.contrib import admin
17-
from django.urls import path, include
17+
from django.urls import include, path
1818

1919
urlpatterns = [
2020
path("api-auth/", include("rest_framework.urls")),

sponsor/admin.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
from django.contrib import admin
2-
from sponsor.models import Sponsor, SponsorLevel
32
from django_summernote.admin import SummernoteModelAdmin
43

4+
from sponsor.models import Sponsor, SponsorLevel
5+
56

67
class SponsorAdmin(SummernoteModelAdmin):
78
summernote_fields = "__all__"

sponsor/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
from django.db import models
21
from django.contrib.auth import get_user_model
2+
from django.db import models
33
from sorl.thumbnail import ImageField as SorlImageField
44

55
User = get_user_model()

sponsor/urls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from django.contrib import admin
2-
from django.urls import path, include
2+
from django.urls import include, path
33

44
urlpatterns = [
55
# path("", ), # TODO

0 commit comments

Comments
 (0)