Skip to content

Commit c831093

Browse files
authored
fix: wrong import location in serializers.py
1 parent 62335cf commit c831093

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rest_framework/serializers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
get_referenced_base_fields_from_q, postgres_fields
3131
)
3232
from rest_framework.exceptions import ErrorDetail, ValidationError
33-
from rest_framework.fields import get_error_detail, BigIntegerField
33+
from rest_framework.fields import get_error_detail
3434
from rest_framework.settings import api_settings
3535
from rest_framework.utils import html, model_meta, representation
3636
from rest_framework.utils.field_mapping import (
@@ -56,7 +56,7 @@
5656
BooleanField, CharField, ChoiceField, DateField, DateTimeField, DecimalField,
5757
DictField, DurationField, EmailField, Field, FileField, FilePathField, FloatField,
5858
HiddenField, HStoreField, IPAddressField, ImageField, IntegerField, JSONField,
59-
ListField, ModelField, MultipleChoiceField, ReadOnlyField,
59+
ListField, ModelField, MultipleChoiceField, ReadOnlyField, BigIntegerField,
6060
RegexField, SerializerMethodField, SlugField, TimeField, URLField, UUIDField,
6161
)
6262
from rest_framework.relations import ( # NOQA # isort:skip

0 commit comments

Comments
 (0)