Skip to content

Commit

Permalink
Do not print errs
Browse files Browse the repository at this point in the history
  • Loading branch information
tristanlatr authored Oct 5, 2024
1 parent c4518c6 commit b50c89c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pydoctor/templatewriter/summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ def helpcontent(self, request: object, tag: Tag) -> Tag:
parsed = restructuredtext.parse_docstring(dedent(self.RST_SOURCE_TEMPLATE.substitute(
kind_names=', '.join(f'"{k.name}"' for k in model.DocumentableKind)
)), errs)
print ([e.descr() for e in errs])
assert not errs
return parsed.to_stan(NotFoundLinker())

def summaryPages(system: model.System) -> Iterable[Type[Page]]:
Expand Down

0 comments on commit b50c89c

Please sign in to comment.