mercurial/scmutil.py
changeset 43727 5b90a050082b
parent 43654 c5548b0b6847
child 43775 b5f183eedd98
--- 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):