Skip to content

Commit f539c0d

Browse files
Removed incorrect DictField docstring. (#6417)
Closes #6363.
1 parent 0ac20a3 commit f539c0d

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

rest_framework/fields.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1725,9 +1725,6 @@ def to_internal_value(self, data):
17251725
return self.run_child_validation(data)
17261726

17271727
def to_representation(self, value):
1728-
"""
1729-
List of object instances -> List of dicts of primitive datatypes.
1730-
"""
17311728
return {
17321729
six.text_type(key): self.child.to_representation(val) if val is not None else None
17331730
for key, val in value.items()

0 commit comments

Comments
 (0)