remove print statement
This commit is contained in:
parent
36a3d0373e
commit
9966915e7f
|
@ -12,7 +12,6 @@ class ApartamentViewSet(viewsets.ReadOnlyModelViewSet):
|
||||||
|
|
||||||
def get_queryset(self):
|
def get_queryset(self):
|
||||||
apartaments = Apartament.objects.all()
|
apartaments = Apartament.objects.all()
|
||||||
print(apartaments)
|
|
||||||
return apartaments
|
return apartaments
|
||||||
|
|
||||||
def get_serializer_class(self):
|
def get_serializer_class(self):
|
||||||
|
|
Loading…
Reference in New Issue