Skip to content

Commit

Permalink
chore: Organize imports
Browse files Browse the repository at this point in the history
  • Loading branch information
nas-tabchiche committed Jan 14, 2025
1 parent 7e816af commit 03b45e3
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions backend/core/serializers.py
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
import importlib
from typing import Any
from ciso_assistant.settings import EMAIL_HOST, EMAIL_HOST_RESCUE


from core.models import *
from iam.models import *
from ebios_rm.models import EbiosRMStudy

from rest_framework import serializers
from rest_framework.exceptions import PermissionDenied
import structlog
from django.contrib.auth import get_user_model
from django.db import models
from core.serializer_fields import FieldsRelatedField
from rest_framework import serializers
from rest_framework.exceptions import PermissionDenied

import structlog
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 *

logger = structlog.get_logger(__name__)

Expand Down

0 comments on commit 03b45e3

Please sign in to comment.