diff -r 8a075b679918 -r ea13dabbe168 mercurial/hgweb/webcommands.py --- a/mercurial/hgweb/webcommands.py Mon Dec 13 20:45:31 2021 -0500 +++ b/mercurial/hgweb/webcommands.py Mon Dec 13 22:46:43 2021 -0500 @@ -519,6 +519,7 @@ def decodepath(path): + # type: (bytes) -> bytes """Hook for mapping a path in the repository to a path in the working copy. @@ -616,7 +617,9 @@ yield { b"parity": next(parity), b"path": path, + # pytype: disable=wrong-arg-types b"emptydirs": b"/".join(emptydirs), + # pytype: enable=wrong-arg-types b"basename": d, }