Skip to content

Commit

Permalink
sort importd
Browse files Browse the repository at this point in the history
  • Loading branch information
SKairinos committed Oct 23, 2023
1 parent bb0ea79 commit 701c71c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions codeforlife/user/views/klass.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
from rest_framework.viewsets import ModelViewSet
from rest_framework.permissions import IsAuthenticated
from rest_framework.viewsets import ModelViewSet

from ..models import Class, User
from ..serializers import ClassSerializer
from ..permissions import IsSchoolMember
from ..serializers import ClassSerializer


class ClassViewSet(ModelViewSet):
Expand Down
6 changes: 3 additions & 3 deletions codeforlife/user/views/school.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
from rest_framework.viewsets import ModelViewSet
from rest_framework.permissions import IsAuthenticated
from rest_framework.viewsets import ModelViewSet

from ..models import User, School
from ..serializers import SchoolSerializer
from ..models import School, User
from ..permissions import IsSchoolMember
from ..serializers import SchoolSerializer


class SchoolViewSet(ModelViewSet):
Expand Down

0 comments on commit 701c71c

Please sign in to comment.