remove print statement

This commit is contained in:
b1ek 2023-05-10 10:55:34 +10:00
parent 36a3d0373e
commit 9966915e7f
Signed by: blek
GPG Key ID: 14546221E3595D0C
1 changed files with 0 additions and 1 deletions

View File

@ -12,7 +12,6 @@ class ApartamentViewSet(viewsets.ReadOnlyModelViewSet):
def get_queryset(self):
apartaments = Apartament.objects.all()
print(apartaments)
return apartaments
def get_serializer_class(self):