Skip to content

Commit

Permalink
fix: BaseManager get_queryset
Browse files Browse the repository at this point in the history
  • Loading branch information
jamagalhaes committed Jan 28, 2025
1 parent 793a6ff commit 6555fc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion canvas_sdk/v1/data/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class BaseModelManager(models.Manager):

def get_queryset(self) -> models.QuerySet:
"""Return a queryset that filters out deleted objects."""
return self.filter(deleted=False)
return super().get_queryset().filter(deleted=False)


class BaseQuerySet(models.QuerySet):
Expand Down

0 comments on commit 6555fc2

Please sign in to comment.