scmutil: add assertions to help pytype
Differential Revision: https://phab.mercurial-scm.org/D7456
--- a/mercurial/scmutil.py Tue Nov 19 14:04:09 2019 -0500
+++ b/mercurial/scmutil.py Tue Nov 19 14:13:04 2019 -0500
@@ -1917,6 +1917,7 @@
def wrapped(tr):
repo = reporef()
if filtername:
+ assert repo is not None # help pytype
repo = repo.filtered(filtername)
func(repo, tr)
@@ -1936,6 +1937,7 @@
if cgheads:
htext = _(b" (%+d heads)") % cgheads
msg = _(b"added %d changesets with %d changes to %d files%s\n")
+ assert repo is not None # help pytype
repo.ui.status(msg % (cgchangesets, cgrevisions, cgfiles, htext))
if txmatch(_reportobsoletedsource):