Skip to content

Commit

Permalink
update import package formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
tomatoprinx committed Jul 5, 2021
1 parent 1732c9a commit b9b6c55
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/core/authentication.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from rest_framework.authentication import TokenAuthentication

from .models import Token


Expand Down
2 changes: 1 addition & 1 deletion src/core/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
from django.urls import reverse

from rest_framework.authtoken import views
from .models import Token
from rest_framework.response import Response

from .data import EXTRA_DATA
from .models import Token
from .utils import (
TemplateExistanceStatusResponse,
collect_language_codes,
Expand Down
2 changes: 1 addition & 1 deletion src/pycontw2016/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
from django.conf.urls.static import static
from django.contrib import admin
from django.views.i18n import set_language
from core import views

from core import views
from core.views import error_page, flat_page, index
from users.views import user_dashboard

Expand Down
2 changes: 1 addition & 1 deletion src/sponsors/api/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

from rest_framework import views
from rest_framework.response import Response
from core.authentication import TokenAuthentication
from rest_framework.permissions import IsAuthenticated

from core.authentication import TokenAuthentication
from sponsors.models import Sponsor, OpenRole


Expand Down

0 comments on commit b9b6c55

Please sign in to comment.