maek empty querytset

from django.db import models

empty_queryset = models.Model.objects.none()

import the models module from django.db

create an empty queryset using the none() method on the Model.objects property