Source code for oioioi.base.utils.query_helpers

from django.db.models import Q


[docs]def Q_always_false(): return Q(pk__in=[])
[docs]def Q_always_true(): return ~Q_always_false()