Skip to content

Commit 3365ec2

Browse files
authored
Merge pull request #5914 from encode/xordoquy/fix_release_notes
release_notes: fix call to super().data
2 parents 2621e03 + 3a29eff commit 3365ec2

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)