mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-13 05:06:53 +03:00
Remove unnecessary hasattr all and add comment for nested relationships
This commit is contained in:
parent
59470667db
commit
9161e5a927
|
@ -517,7 +517,9 @@ class ListSerializer(BaseSerializer):
|
||||||
"""
|
"""
|
||||||
List of object instances -> List of dicts of primitive datatypes.
|
List of object instances -> List of dicts of primitive datatypes.
|
||||||
"""
|
"""
|
||||||
iterable = data.all() if (isinstance(data, models.Manager) and hasattr(data, 'all')) else data
|
# Dealing with nested relationships, data can be a Manager,
|
||||||
|
# so, first get a queryset from the Manager if needed
|
||||||
|
iterable = data.all() if isinstance(data, models.Manager) else data
|
||||||
return [
|
return [
|
||||||
self.child.to_representation(item) for item in iterable
|
self.child.to_representation(item) for item in iterable
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in New Issue
Block a user