mirror of
https://github.com/jazzband/django-eav2.git
synced 2026-03-16 22:40:26 +00:00
Remove 'distinct' call (#4)
This commit is contained in:
parent
dcfd8e4e7e
commit
d60614ffb7
1 changed files with 2 additions and 2 deletions
|
|
@ -261,7 +261,7 @@ class EavQuerySet(QuerySet):
|
|||
Pass *args* and *kwargs* through ``eav_filter``, then pass to
|
||||
the ``models.Manager`` filter method.
|
||||
'''
|
||||
return super(self.__class__, self).filter(*args, **kwargs).distinct()
|
||||
return super(self.__class__, self).filter(*args, **kwargs)
|
||||
|
||||
@eav_filter
|
||||
def exclude(self, *args, **kwargs):
|
||||
|
|
@ -269,7 +269,7 @@ class EavQuerySet(QuerySet):
|
|||
Pass *args* and *kwargs* through ``eav_filter``, then pass to
|
||||
the ``models.Manager`` exclude method.
|
||||
'''
|
||||
return super(self.__class__, self).exclude(*args, **kwargs).distinct()
|
||||
return super(self.__class__, self).exclude(*args, **kwargs)
|
||||
|
||||
@eav_filter
|
||||
def get(self, *args, **kwargs):
|
||||
|
|
|
|||
Loading…
Reference in a new issue