typing: add an assertion to mercurial/hgweb/webcommands.py to help pytype stable
authorMatt Harbison <matt_harbison@yahoo.com>
Fri, 12 Mar 2021 20:25:12 -0500
branchstable
changeset 46789 914ca0a98518
parent 46788 693991ccfc49
child 46790 5137896602d9
typing: add an assertion to mercurial/hgweb/webcommands.py to help pytype I have no idea why this is needed, given the check immediately above. But without it, I'm getting this: File "/mnt/c/Users/Matt/hg/mercurial/hgweb/webcommands.py", line 1164, in filelog: Missing parameter 'toline' in call to function mercurial.dagop.blockdescendants [missing-parameter] Expected: (fctx, fromline, toline) Actually passed: (fctx, fromline) File "/mnt/c/Users/Matt/hg/mercurial/hgweb/webcommands.py", line 1166, in filelog: Missing parameter 'toline' in call to function mercurial.dagop.blockancestors [missing-parameter] Expected: (fctx, fromline, toline, followfirst) Actually passed: (fctx, fromline) Differential Revision: https://phab.mercurial-scm.org/D10211
mercurial/hgweb/webcommands.py
--- a/mercurial/hgweb/webcommands.py	Fri Mar 12 19:02:07 2021 -0500
+++ b/mercurial/hgweb/webcommands.py	Fri Mar 12 20:25:12 2021 -0500
@@ -1156,6 +1156,7 @@
 
     linerange = None
     if lrange is not None:
+        assert lrange is not None  # help pytype (!?)
         linerange = webutil.formatlinerange(*lrange)
         # deactivate numeric nav links when linerange is specified as this
         # would required a dedicated "revnav" class