Skip to content

Commit

Permalink
Fix import order
Browse files Browse the repository at this point in the history
  • Loading branch information
nas-tabchiche committed Jan 14, 2025
1 parent dcf8bf3 commit c9d0c35
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions backend/core/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,16 @@
import structlog
from django.contrib.auth import get_user_model
from django.db import models
from rest_framework import serializers
from rest_framework.exceptions import PermissionDenied

from ciso_assistant.settings import EMAIL_HOST, EMAIL_HOST_RESCUE
from core.models import *
from core.serializer_fields import FieldsRelatedField
from ebios_rm.models import EbiosRMStudy
from iam.models import *

from rest_framework import serializers
from rest_framework.exceptions import PermissionDenied

logger = structlog.get_logger(__name__)

User = get_user_model()
Expand Down

0 comments on commit c9d0c35

Please sign in to comment.