1
0
mirror of https://github.com/django/django.git synced 2024-12-28 12:06:22 +00:00

[4.2.x] Refs #34754 -- Added missing FullResultSet import.

Follow up to 3a1863319c.
This commit is contained in:
Mariusz Felisiak 2023-08-04 15:39:49 +02:00
parent 3a1863319c
commit 936afc2deb

View File

@ -1,7 +1,7 @@
import itertools import itertools
import math import math
from django.core.exceptions import EmptyResultSet from django.core.exceptions import EmptyResultSet, FullResultSet
from django.db.models.expressions import Case, Expression, Func, Value, When from django.db.models.expressions import Case, Expression, Func, Value, When
from django.db.models.fields import ( from django.db.models.fields import (
BooleanField, BooleanField,