Topic pages: remove authors table (#2823)

This table is not too useful, and for some reason we're not properly
mangling email addresses in the table. For simplicity, just omit the
table.
This commit is contained in:
Jelle Zijlstra 2022-10-06 17:36:15 -07:00 committed by GitHub
parent e447c5476a
commit 520cc0bbe7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 15 additions and 14 deletions

View File

@ -189,6 +189,7 @@ class PEPZeroWriter:
self.emit_newline() self.emit_newline()
if is_pep0:
# PEP owners # PEP owners
authors_dict = _verify_email_addresses(peps) authors_dict = _verify_email_addresses(peps)
max_name_len = max(len(author_name) for author_name in authors_dict) max_name_len = max(len(author_name) for author_name in authors_dict)