Skip to content

Commit

Permalink
[#233] Isort and Flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
danielmursa-dev committed Dec 23, 2024
1 parent 181409c commit a7288d5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
from typing import List

from django.core.exceptions import ValidationError
from django.utils.translation import gettext_lazy as _

from digid_eherkenning.validators import BSNValidator, Proef11ValidatorBase
from rest_framework import serializers

from .constants import (
Expand All @@ -11,9 +12,6 @@
)


from typing import List


class ObjectIdValidator:
"""
Validates an ObjectId based on digit check, length, and optional 11-proof check.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from django.test import TestCase
from django.core.exceptions import ValidationError
from django.test import TestCase

from rest_framework import serializers

from openklant.components.klantinteracties.models.constants import (
Expand All @@ -8,8 +9,8 @@
PartijIdentificatorCodeSoortObjectId,
)
from openklant.components.klantinteracties.models.validators import (
PartijIdentificatorValidator,
ObjectIdValidator,
PartijIdentificatorValidator,
)


Expand Down

0 comments on commit a7288d5

Please sign in to comment.