mirror of
https://github.com/encode/django-rest-framework.git
synced 2025-05-06 17:03:42 +03:00
release_notes: fix call to super().data
`super().data()` leads to a `TypeError` saying that 'ReturnDict' object is not callable.
This commit is contained in:
parent
2621e03aa3
commit
3a29eff5f8
|
@ -74,7 +74,7 @@ You can determine your currently installed version using `pip show`:
|
||||||
"""
|
"""
|
||||||
Drop `maybe_none` field if None.
|
Drop `maybe_none` field if None.
|
||||||
"""
|
"""
|
||||||
data = super().data()
|
data = super().data
|
||||||
if 'maybe_none' in data and data['maybe_none'] is None:
|
if 'maybe_none' in data and data['maybe_none'] is None:
|
||||||
del data['maybe_none']
|
del data['maybe_none']
|
||||||
return data
|
return data
|
||||||
|
|
Loading…
Reference in New Issue
Block a user