Mercurial > public > mercurial-scm > hg
diff mercurial/pathutil.py @ 51287:f4a0806081f2
pytype: drop the now useless assert
As the imported types are now used by type annotation, these ugly assert are
no longer needed.
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Wed, 20 Dec 2023 22:17:03 +0100 |
parents | 8b2ea2246a5f |
children | 24844407fa0d |
line wrap: on
line diff
--- a/mercurial/pathutil.py Wed Dec 20 16:39:03 2023 +0100 +++ b/mercurial/pathutil.py Wed Dec 20 22:17:03 2023 +0100 @@ -23,14 +23,6 @@ rustdirs = policy.importrust('dirstate', 'Dirs') parsers = policy.importmod('parsers') -# keeps pyflakes happy -assert [ - Any, - Callable, - Iterator, - Optional, -] - def _lowerclean(s: bytes) -> bytes: return encoding.hfsignoreclean(s.lower())