Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
faucomte97 committed Nov 20, 2024
1 parent 5b89159 commit 7d4d747
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion codeforlife/user/permissions/is_independent.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

import typing as t

from ..models import User
from ...permissions import IsAuthenticated
from ..models import User


class IsIndependent(IsAuthenticated):
Expand Down
2 changes: 1 addition & 1 deletion codeforlife/user/views/school.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from ...views import ModelViewSet
from ..models import School
from ..models import User as RequestUser
from ..permissions import IsStudent, IsTeacher, IsIndependent
from ..permissions import IsIndependent, IsStudent, IsTeacher
from ..serializers import SchoolSerializer


Expand Down

0 comments on commit 7d4d747

Please sign in to comment.