diff -r f81e0ce5103a -r 607e94e01851 mercurial/help.py --- a/mercurial/help.py Thu Sep 12 12:53:00 2024 -0400 +++ b/mercurial/help.py Mon Sep 16 15:36:38 2024 +0200 @@ -805,7 +805,7 @@ full: bool = True, subtopic: Optional[bytes] = None, fullname: Optional[bytes] = None, - **opts + **opts, ) -> bytes: """ Generate the help for 'name' as unformatted restructured text. If @@ -1228,7 +1228,7 @@ keep: Optional[Iterable[bytes]] = None, unknowncmd: bool = False, full: bool = True, - **opts + **opts, ) -> bytes: """get help for a given topic (as a dotted name) as rendered rst @@ -1261,7 +1261,7 @@ subtopic=subtopic, unknowncmd=unknowncmd, full=full, - **opts + **opts, ) blocks, pruned = minirst.parse(text, keep=keep)