Skip to content

Commit 3a29eff

Browse files
committed
release_notes: fix call to super().data
`super().data()` leads to a `TypeError` saying that 'ReturnDict' object is not callable.
1 parent 2621e03 commit 3a29eff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/topics/release-notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ You can determine your currently installed version using `pip show`:
7474
"""
7575
Drop `maybe_none` field if None.
7676
"""
77-
data = super().data()
77+
data = super().data
7878
if 'maybe_none' in data and data['maybe_none'] is None:
7979
del data['maybe_none']
8080
return data

0 commit comments

Comments
 (0)